From 485a3f58fecfaaa0deba09948e1e69b9bc9a52f5 Mon Sep 17 00:00:00 2001 From: Sumon Ahmed Date: Wed, 1 Jan 2025 15:29:29 +0600 Subject: [PATCH 1/3] feat: pint workflow --- .github/workflows/pint.yml | 32 +++++++++++++++++ composer.json | 1 + composer.lock | 70 ++++++++++++++++++++++++++++++++++++-- 3 files changed, 101 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/pint.yml diff --git a/.github/workflows/pint.yml b/.github/workflows/pint.yml new file mode 100644 index 000000000..93af1d04a --- /dev/null +++ b/.github/workflows/pint.yml @@ -0,0 +1,32 @@ +name: pint + +on: + push: + branches: + - main + - 3.x + pull_request: + branches: [ main ] + +jobs: + pint: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + ref: ${{ github.head_ref }} + - name: Set up PHP + uses: shivammathur/setup-php@v2 + with: + php-version: 8.3 + - name: Install dependencies + run: composer install --no-interaction + - name: Run Laravel Pint + run: ./vendor/bin/pint + - name: Commit changes + uses: stefanzweifel/git-auto-commit-action@v4 + with: + commit_message: > + chore: fix code formatting \ No newline at end of file diff --git a/composer.json b/composer.json index da0d18a77..fdba20fdd 100644 --- a/composer.json +++ b/composer.json @@ -32,6 +32,7 @@ "alebatistella/duskapiconf": "^1.2", "fakerphp/faker": "^1.9.1", "laravel/dusk": "^8.0", + "laravel/pint": "^1.19", "mockery/mockery": "^1.4.4", "nunomaduro/collision": "6.4.0|^7.0|^8.1", "pestphp/pest": "^3.4", diff --git a/composer.lock b/composer.lock index 01106d4e2..942ce22d6 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "01ec436c2459c4760e81f7467649c604", + "content-hash": "486bc848d75cab8f5caf8a3df483d5da", "packages": [ { "name": "anourvalar/eloquent-serialize", @@ -10664,6 +10664,72 @@ }, "time": "2024-11-21T17:37:39+00:00" }, + { + "name": "laravel/pint", + "version": "v1.19.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/pint.git", + "reference": "8169513746e1bac70c85d6ea1524d9225d4886f0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pint/zipball/8169513746e1bac70c85d6ea1524d9225d4886f0", + "reference": "8169513746e1bac70c85d6ea1524d9225d4886f0", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "php": "^8.1.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.66.0", + "illuminate/view": "^10.48.25", + "larastan/larastan": "^2.9.12", + "laravel-zero/framework": "^10.48.25", + "mockery/mockery": "^1.6.12", + "nunomaduro/termwind": "^1.17.0", + "pestphp/pest": "^2.36.0" + }, + "bin": [ + "builds/pint" + ], + "type": "project", + "autoload": { + "psr-4": { + "App\\": "app/", + "Database\\Seeders\\": "database/seeders/", + "Database\\Factories\\": "database/factories/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "An opinionated code formatter for PHP.", + "homepage": "https://laravel.com", + "keywords": [ + "format", + "formatter", + "lint", + "linter", + "php" + ], + "support": { + "issues": "https://github.com/laravel/pint/issues", + "source": "https://github.com/laravel/pint" + }, + "time": "2024-12-30T16:20:10+00:00" + }, { "name": "mockery/mockery", "version": "1.6.12", @@ -13609,6 +13675,6 @@ "ext-exif": "*", "ext-gd": "*" }, - "platform-dev": [], + "platform-dev": {}, "plugin-api-version": "2.6.0" } From b00f9e80094070928f54bc9380431c95c68d7bad Mon Sep 17 00:00:00 2001 From: Sumon Ahmed Date: Wed, 1 Jan 2025 15:44:09 +0600 Subject: [PATCH 2/3] wip --- app/Console/Commands/CreateRole.php | 11 +- app/Console/Commands/CreateUser.php | 7 +- app/Console/Kernel.php | 1 - app/Filament/Pages/Dashboard.php | 6 +- app/Filament/Pages/Media.php | 7 +- app/Filament/Pages/Plugins.php | 34 +- app/Filament/Pages/Themes.php | 83 ++- app/Filament/Resources/CategoryResource.php | 5 +- .../CategoryResource/Pages/CreateCategory.php | 1 - app/Filament/Resources/ChangelogResource.php | 5 +- .../Pages/CreateChangelog.php | 1 - app/Filament/Resources/FormsResource.php | 28 +- .../FormsResource/Pages/CreateForms.php | 3 +- .../FormsResource/Pages/EditForms.php | 2 +- app/Filament/Resources/PageResource.php | 7 +- .../PageResource/Pages/CreatePage.php | 1 - app/Filament/Resources/PermissionResource.php | 5 +- .../Pages/CreatePermission.php | 1 - app/Filament/Resources/PlanResource.php | 15 +- .../PlanResource/Pages/CreatePlan.php | 1 - app/Filament/Resources/PostResource.php | 9 +- .../PostResource/Pages/CreatePost.php | 1 - app/Filament/Resources/RoleResource.php | 5 +- .../RoleResource/Pages/CreateRole.php | 1 - app/Filament/Resources/SettingResource.php | 5 +- .../SettingResource/Pages/CreateSetting.php | 3 +- .../SettingResource/Pages/EditSetting.php | 2 +- .../SettingResource/Pages/ListSettings.php | 2 +- app/Filament/Resources/UserResource.php | 16 +- .../UserResource/Pages/CreateUser.php | 1 - app/Http/Controllers/Api/ApiController.php | 8 +- .../Auth/ForgotPasswordController.php | 5 +- .../Controllers/Auth/RegisterController.php | 5 +- .../Auth/ResetPasswordController.php | 5 +- app/Http/Kernel.php | 4 +- app/Http/Middleware/EncryptCookies.php | 2 +- app/Http/Middleware/HttpsRedirect.php | 3 +- .../Middleware/RedirectIfAuthenticated.php | 1 - app/Http/Middleware/VerifyCsrfToken.php | 2 +- app/Listeners/UserRegistered.php | 2 - app/Models/Category.php | 5 +- app/Models/Post.php | 2 - app/Models/User.php | 12 +- app/Notifications/TestNotification.php | 12 +- app/Providers/AppServiceProvider.php | 8 +- app/Providers/AuthServiceProvider.php | 1 - app/Providers/Filament/AdminPanelProvider.php | 43 +- app/Providers/FolioServiceProvider.php | 6 +- config/devdojo/billing/keys.php | 6 +- config/devdojo/billing/language.php | 6 +- config/devdojo/billing/style.php | 4 +- config/discussions.php | 14 +- config/features.php | 50 +- config/forms.php | 6 +- config/image.php | 2 +- config/permission.php | 6 +- config/profile.php | 18 +- config/services.php | 2 +- config/style.php | 4 +- config/themes.php | 8 +- config/voyager.php | 36 +- config/wave.php | 56 +- database/factories/UserFactory.php | 2 - database/seeders/ApiKeysTableSeeder.php | 8 +- database/seeders/CategoriesTableSeeder.php | 27 +- database/seeders/ChangelogsTableSeeder.php | 28 +- database/seeders/DatabaseSeeder.php | 6 +- database/seeders/ModelHasRolesTableSeeder.php | 14 +- database/seeders/NotificationsTableSeeder.php | 8 +- database/seeders/PagesTableSeeder.php | 27 +- .../seeders/PasswordResetsTableSeeder.php | 8 +- .../seeders/PermissionRoleTableSeeder.php | 3 +- database/seeders/PermissionsTableSeeder.php | 3 +- database/seeders/PlansTableSeeder.php | 22 +- database/seeders/PostsTableSeeder.php | 51 +- .../seeders/ProfileKeyValuesTableSeeder.php | 12 +- database/seeders/RolesTableSeeder.php | 32 +- database/seeders/SettingsTableSeeder.php | 24 +- database/seeders/ThemesTableSeeder.php | 20 +- database/seeders/TranslationsTableSeeder.php | 163 ++-- database/seeders/UsersTableSeeder.php | 22 +- .../VoyagerThemeOptionsTableSeeder.php | 63 +- database/seeders/VoyagerThemesTableSeeder.php | 12 +- lang/al/voyager.php | 588 +++++++-------- lang/ar/pagination.php | 2 +- lang/ar/passwords.php | 2 +- lang/ar/validation.php | 66 +- lang/ar/voyager.php | 584 +++++++-------- lang/de/voyager.php | 584 +++++++-------- lang/en/voyager.php | 654 ++++++++-------- lang/es/voyager.php | 600 +++++++-------- lang/fr/voyager.php | 558 +++++++------- lang/it/passwords.php | 2 +- lang/it/voyager.php | 588 +++++++-------- lang/pl/passwords.php | 2 +- lang/pl/validation.php | 194 ++--- lang/pl/voyager.php | 698 +++++++++--------- lang/pt/voyager.php | 584 +++++++-------- lang/pt_br/voyager.php | 624 ++++++++-------- lang/ro/voyager.php | 662 ++++++++--------- lang/ru/voyager.php | 620 ++++++++-------- lang/tr/voyager.php | 584 +++++++-------- lang/uk/voyager.php | 620 ++++++++-------- lang/zh_CN/voyager.php | 600 +++++++-------- public/composer/install.php | 85 ++- public/composer/mac.php | 26 +- public/composer/windows.php | 2 +- public/index.php | 4 +- routes/api.php | 1 - routes/web.php | 1 - tests/Datasets/AuthRoutes.php | 2 +- tests/Datasets/Routes.php | 2 +- tests/Feature/RouteTest.php | 2 +- ..._225420_create_permission_roles_tables.php | 4 +- .../2024_06_26_224315_create_forms_table.php | 2 +- wave/routes/api.php | 1 - wave/routes/web.php | 4 +- .../AddSubscriptionIdFromTransaction.php | 19 +- wave/src/Actions/Reset.php | 2 +- wave/src/ApiKey.php | 8 +- wave/src/Category.php | 7 +- wave/src/Changelog.php | 10 +- .../Commands/CancelExpiredSubscriptions.php | 7 +- .../Console/Commands/CreatePluginCommand.php | 21 +- wave/src/Form.php | 4 +- wave/src/FormEntry.php | 2 +- wave/src/Helpers/globals.php | 31 +- .../Http/Controllers/API/AuthController.php | 14 +- wave/src/Http/Controllers/Billing/Paddle.php | 12 +- wave/src/Http/Controllers/Billing/Stripe.php | 15 +- .../Billing/Webhooks/PaddleWebhook.php | 12 +- .../Billing/Webhooks/StripeWebhook.php | 38 +- .../Http/Controllers/ChangelogController.php | 3 +- wave/src/Http/Controllers/HomeController.php | 19 +- .../src/Http/Controllers/LogoutController.php | 6 +- .../Controllers/NotificationController.php | 9 +- wave/src/Http/Controllers/PageController.php | 9 +- .../Controllers/PluginImageController.php | 8 +- .../Http/Controllers/ProfileController.php | 8 +- .../Http/Controllers/SettingsController.php | 77 +- .../Controllers/SubscriptionController.php | 125 ++-- .../Http/Controllers/ThemeImageController.php | 8 +- wave/src/Http/Livewire/Billing/Checkout.php | 82 +- wave/src/Http/Livewire/Billing/Update.php | 66 +- .../Livewire/Notifications/Notification.php | 7 +- wave/src/Http/Middleware/AdminMiddleware.php | 3 +- .../src/Http/Middleware/InstallMiddleware.php | 10 +- wave/src/Http/Middleware/Subscribed.php | 4 +- .../Http/Middleware/ThemeDemoMiddleware.php | 5 +- wave/src/Http/Middleware/TokenMiddleware.php | 16 +- .../VerifyPaddleWebhookSignature.php | 12 +- wave/src/Http/Middleware/VerifyWebhook.php | 3 +- wave/src/Notifications/VerifyEmail.php | 12 +- wave/src/Overrides/Vite.php | 2 +- wave/src/Page.php | 15 +- wave/src/Plan.php | 1 - wave/src/Plugins/Plugin.php | 2 +- wave/src/Plugins/PluginAutoloader.php | 12 +- wave/src/Plugins/PluginManager.php | 27 +- wave/src/Post.php | 18 +- wave/src/ProfileKeyValue.php | 2 +- wave/src/Setting.php | 3 +- wave/src/Subscription.php | 8 +- wave/src/Theme.php | 8 +- wave/src/ThemeOptions.php | 5 +- wave/src/Traits/HasDynamicFields.php | 40 +- wave/src/Traits/HasProfileKeyValues.php | 8 +- wave/src/User.php | 92 +-- wave/src/Wave.php | 7 +- wave/src/WaveServiceProvider.php | 158 ++-- .../Widgets/AnalyticsPlaceholderWidget.php | 4 +- wave/src/Widgets/WaveStatsWidget.php | 10 +- 172 files changed, 5834 insertions(+), 6002 deletions(-) diff --git a/app/Console/Commands/CreateRole.php b/app/Console/Commands/CreateRole.php index 602f009ea..28db5338b 100644 --- a/app/Console/Commands/CreateRole.php +++ b/app/Console/Commands/CreateRole.php @@ -4,12 +4,13 @@ use Illuminate\Console\Command; use Illuminate\Support\Facades\Validator; -use Spatie\Permission\Models\Role; use Spatie\Permission\Models\Permission; +use Spatie\Permission\Models\Role; class CreateRole extends Command { protected $signature = 'app:create-role'; + protected $description = 'Create a new role with optional permissions'; public function handle() @@ -26,6 +27,7 @@ public function handle() foreach ($validator->errors()->all() as $error) { $this->line($error); } + return 1; } @@ -34,7 +36,7 @@ public function handle() // Create the role $role = Role::create([ 'name' => $name, - 'description' => $description + 'description' => $description, ]); // Ask if user wants to assign permissions @@ -43,6 +45,7 @@ public function handle() } $this->info("Role '{$name}' created successfully."); + return 0; } @@ -52,6 +55,7 @@ protected function assignPermissions(Role $role) if ($allPermissions->isEmpty()) { $this->warn('No permissions found in the database.'); + return; } @@ -67,9 +71,8 @@ protected function assignPermissions(Role $role) $selectedPermissions = $allPermissions->whereIn('id', $selectedPermissionIds); - $role->syncPermissions($selectedPermissions); $this->info('Permissions assigned successfully.'); } -} \ No newline at end of file +} diff --git a/app/Console/Commands/CreateUser.php b/app/Console/Commands/CreateUser.php index 4c25ef6ce..cf0011d79 100644 --- a/app/Console/Commands/CreateUser.php +++ b/app/Console/Commands/CreateUser.php @@ -12,6 +12,7 @@ class CreateUser extends Command { protected $signature = 'app:create-user'; + protected $description = 'Create a new user with role assignment'; public function handle() @@ -39,6 +40,7 @@ public function handle() foreach ($validator->errors()->all() as $error) { $this->line($error); } + return 1; } @@ -48,7 +50,7 @@ public function handle() 'email' => $email, 'username' => $username, 'password' => Hash::make($password), - 'verified' => 1 + 'verified' => 1, ]); // Get roles and let user select @@ -64,6 +66,7 @@ public function handle() $user->assignRole($selectedRole); $this->info("User created successfully with role: {$selectedRole}"); + return 0; } -} \ No newline at end of file +} diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 50be0f154..dc4cf0acb 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -10,7 +10,6 @@ class Kernel extends ConsoleKernel /** * Define the application's command schedule. * - * @param \Illuminate\Console\Scheduling\Schedule $schedule * @return void */ protected function schedule(Schedule $schedule) diff --git a/app/Filament/Pages/Dashboard.php b/app/Filament/Pages/Dashboard.php index f51756d2b..240379872 100644 --- a/app/Filament/Pages/Dashboard.php +++ b/app/Filament/Pages/Dashboard.php @@ -1,9 +1,9 @@ pages([]); } -} \ No newline at end of file +} diff --git a/app/Filament/Pages/Media.php b/app/Filament/Pages/Media.php index 90a1b9fbe..923f0eae6 100644 --- a/app/Filament/Pages/Media.php +++ b/app/Filament/Pages/Media.php @@ -5,19 +5,16 @@ use Filament\Pages\Page; use Filament\Support\Enums\MaxWidth; - class Media extends Page { - protected static ?string $navigationIcon = 'heroicon-o-photo'; protected static string $view = 'wave::media.index'; - + protected static ?int $navigationSort = 5; - + public function getMaxContentWidth(): MaxWidth { return MaxWidth::Full; } - } diff --git a/app/Filament/Pages/Plugins.php b/app/Filament/Pages/Plugins.php index 379520b51..88dfd35bd 100644 --- a/app/Filament/Pages/Plugins.php +++ b/app/Filament/Pages/Plugins.php @@ -2,11 +2,11 @@ namespace App\Filament\Pages; -use Filament\Pages\Page; use Filament\Notifications\Notification; +use Filament\Pages\Page; +use Illuminate\Support\Facades\Artisan; use Illuminate\Support\Facades\File; use Illuminate\Support\Str; -use Illuminate\Support\Facades\Artisan; class Plugins extends Page { @@ -33,18 +33,20 @@ private function getPluginsFromFolder() $plugins = []; $plugins_folder = resource_path('plugins'); - if (!file_exists($plugins_folder)) { + if (! file_exists($plugins_folder)) { mkdir($plugins_folder); } $scandirectory = scandir($plugins_folder); foreach ($scandirectory as $folder) { - if ($folder === '.' || $folder === '..') continue; + if ($folder === '.' || $folder === '..') { + continue; + } $studlyFolderName = Str::studly($folder); - $pluginFile = $plugins_folder . '/' . $folder . '/' . $studlyFolderName . 'Plugin.php'; - + $pluginFile = $plugins_folder.'/'.$folder.'/'.$studlyFolderName.'Plugin.php'; + if (file_exists($pluginFile)) { $pluginClass = "Wave\\Plugins\\{$studlyFolderName}\\{$studlyFolderName}Plugin"; if (class_exists($pluginClass) && method_exists($pluginClass, 'getPluginInfo')) { @@ -63,12 +65,14 @@ private function getPluginsFromFolder() private function isPluginActive($folder) { $installedPlugins = $this->getInstalledPlugins(); + return in_array($folder, $installedPlugins); } private function getInstalledPlugins() { $path = resource_path('plugins/installed.json'); + return File::exists($path) ? File::json($path) : []; } @@ -81,14 +85,14 @@ private function updateInstalledPlugins($plugins) public function activate($pluginFolder) { $installedPlugins = $this->getInstalledPlugins(); - if (!in_array($pluginFolder, $installedPlugins)) { + if (! in_array($pluginFolder, $installedPlugins)) { $installedPlugins[] = $pluginFolder; $this->updateInstalledPlugins($installedPlugins); $this->runPostActivationCommands($pluginFolder); Notification::make() - ->title('Successfully activated ' . $pluginFolder . ' plugin') + ->title('Successfully activated '.$pluginFolder.' plugin') ->success() ->send(); } @@ -100,13 +104,13 @@ private function runPostActivationCommands($pluginFolder) { $studlyFolderName = Str::studly($pluginFolder); $pluginClass = "Wave\\Plugins\\{$studlyFolderName}\\{$studlyFolderName}Plugin"; - + if (class_exists($pluginClass)) { $plugin = new $pluginClass(app()); - + if (method_exists($plugin, 'getPostActivationCommands')) { $commands = $plugin->getPostActivationCommands(); - + foreach ($commands as $command) { if (is_string($command)) { Artisan::call($command); @@ -134,7 +138,7 @@ public function deactivate($pluginFolder) $this->updateInstalledPlugins($installedPlugins); Notification::make() - ->title('Successfully deactivated ' . $pluginFolder . ' plugin') + ->title('Successfully deactivated '.$pluginFolder.' plugin') ->success() ->send(); @@ -145,16 +149,16 @@ public function deletePlugin($pluginFolder) { $this->deactivate($pluginFolder); - $pluginPath = resource_path('plugins') . '/' . $pluginFolder; + $pluginPath = resource_path('plugins').'/'.$pluginFolder; if (file_exists($pluginPath)) { File::deleteDirectory($pluginPath); } Notification::make() - ->title('Successfully deleted ' . $pluginFolder . ' plugin') + ->title('Successfully deleted '.$pluginFolder.' plugin') ->success() ->send(); $this->refreshPlugins(); } -} \ No newline at end of file +} diff --git a/app/Filament/Pages/Themes.php b/app/Filament/Pages/Themes.php index 0326959eb..37dc5def4 100644 --- a/app/Filament/Pages/Themes.php +++ b/app/Filament/Pages/Themes.php @@ -2,10 +2,10 @@ namespace App\Filament\Pages; -use Filament\Pages\Page; use Filament\Notifications\Notification; -use Wave\Theme; +use Filament\Pages\Page; use Illuminate\Support\Facades\File; +use Wave\Theme; class Themes extends Page { @@ -19,61 +19,65 @@ class Themes extends Page protected static string $view = 'filament.pages.themes'; - public function mount(){ + public function mount() + { $this->themes_folder = config('themes.folder', resource_path('themes')); $this->installThemes(); $this->refreshThemes(); } - private function refreshThemes(){ + private function refreshThemes() + { $all_themes = Theme::all(); $this->themes = []; - foreach($all_themes as $theme){ - if (file_exists(resource_path('themes/' . $theme->folder))) { + foreach ($all_themes as $theme) { + if (file_exists(resource_path('themes/'.$theme->folder))) { array_push($this->themes, $theme); } } } - private function getThemesFromFolder(){ - $themes = array(); + private function getThemesFromFolder() + { + $themes = []; - if(!file_exists($this->themes_folder)){ + if (! file_exists($this->themes_folder)) { mkdir($this->themes_folder); } $scandirectory = scandir($this->themes_folder); - if(isset($scandirectory)){ + if (isset($scandirectory)) { - foreach($scandirectory as $folder){ - //dd($theme_folder . '/' . $folder . '/' . $folder . '.json'); - $json_file = $this->themes_folder . '/' . $folder . '/theme.json'; - if(file_exists($json_file)){ + foreach ($scandirectory as $folder) { + // dd($theme_folder . '/' . $folder . '/' . $folder . '.json'); + $json_file = $this->themes_folder.'/'.$folder.'/theme.json'; + if (file_exists($json_file)) { $themes[$folder] = json_decode(file_get_contents($json_file), true); $themes[$folder]['folder'] = $folder; - $themes[$folder] = (object)$themes[$folder]; + $themes[$folder] = (object) $themes[$folder]; } } } - return (object)$themes; + return (object) $themes; } - private function installThemes() { + private function installThemes() + { $themes = $this->getThemesFromFolder(); - foreach($themes as $theme){ - if(isset($theme->folder)){ + foreach ($themes as $theme) { + if (isset($theme->folder)) { $theme_exists = Theme::where('folder', '=', $theme->folder)->first(); // If the theme does not exist in the database, then update it. - if(!isset($theme_exists->id)){ + if (! isset($theme_exists->id)) { $version = isset($theme->version) ? $theme->version : ''; Theme::create(['name' => $theme->name, 'folder' => $theme->folder, 'version' => $version]); - if(config('themes.publish_assets', true)){ + if (config('themes.publish_assets', true)) { $this->publishAssets($theme->folder); } } else { @@ -81,7 +85,7 @@ private function installThemes() { $theme_exists->name = $theme->name; $theme_exists->version = isset($theme->version) ? $theme->version : ''; $theme_exists->save(); - if(config('themes.publish_assets', true)){ + if (config('themes.publish_assets', true)) { $this->publishAssets($theme->folder); } } @@ -89,13 +93,12 @@ private function installThemes() { } } - public function activate($theme_folder){ - - + public function activate($theme_folder) + { $theme = Theme::where('folder', '=', $theme_folder)->first(); - if(isset($theme->id)){ + if (isset($theme->id)) { $this->deactivateThemes(); $theme->active = 1; $theme->save(); @@ -103,10 +106,10 @@ public function activate($theme_folder){ $this->writeThemeJson($theme_folder); Notification::make() - ->title('Successfully activated ' . $theme_folder . ' theme') + ->title('Successfully activated '.$theme_folder.' theme') ->success() ->send(); - + } else { Notification::make() ->title('Could not find theme folder. Please confirm this theme has been installed.') @@ -122,20 +125,22 @@ public function activate($theme_folder){ } - private function writeThemeJson($themeName){ + private function writeThemeJson($themeName) + { $themeJsonPath = base_path('theme.json'); $themeJsonContent = json_encode(['name' => $themeName], JSON_PRETTY_PRINT); File::put($themeJsonPath, $themeJsonContent); } - private function deactivateThemes(){ + private function deactivateThemes() + { Theme::query()->update(['active' => 0]); } - - public function deleteTheme($theme_folder){ + public function deleteTheme($theme_folder) + { $theme = Theme::where('folder', '=', $theme_folder)->first(); - if(!isset($theme)){ + if (! isset($theme)) { Notification::make() ->title('Theme not found, please make sure this theme exists in the database.') ->danger() @@ -144,20 +149,20 @@ public function deleteTheme($theme_folder){ $theme_name = $theme->name; - $theme_location = config('themes.folder') . '/' . $theme->folder; + $theme_location = config('themes.folder').'/'.$theme->folder; // if the folder exists delete it - if(file_exists($theme_location)){ + if (file_exists($theme_location)) { File::deleteDirectory($theme_location, false); } $theme->delete(); Notification::make() - ->title('Theme successfully deleted') - ->success() - ->send(); - + ->title('Theme successfully deleted') + ->success() + ->send(); + $this->refreshThemes(); } } diff --git a/app/Filament/Resources/CategoryResource.php b/app/Filament/Resources/CategoryResource.php index 9a9c3618c..7e7468e2d 100644 --- a/app/Filament/Resources/CategoryResource.php +++ b/app/Filament/Resources/CategoryResource.php @@ -3,15 +3,12 @@ namespace App\Filament\Resources; use App\Filament\Resources\CategoryResource\Pages; -use App\Filament\Resources\CategoryResource\RelationManagers; -use Wave\Category; use Filament\Forms; use Filament\Forms\Form; use Filament\Resources\Resource; use Filament\Tables; use Filament\Tables\Table; -use Illuminate\Database\Eloquent\Builder; -use Illuminate\Database\Eloquent\SoftDeletingScope; +use Wave\Category; class CategoryResource extends Resource { diff --git a/app/Filament/Resources/CategoryResource/Pages/CreateCategory.php b/app/Filament/Resources/CategoryResource/Pages/CreateCategory.php index 41b42d868..3fb9bb4c4 100644 --- a/app/Filament/Resources/CategoryResource/Pages/CreateCategory.php +++ b/app/Filament/Resources/CategoryResource/Pages/CreateCategory.php @@ -3,7 +3,6 @@ namespace App\Filament\Resources\CategoryResource\Pages; use App\Filament\Resources\CategoryResource; -use Filament\Actions; use Filament\Resources\Pages\CreateRecord; class CreateCategory extends CreateRecord diff --git a/app/Filament/Resources/ChangelogResource.php b/app/Filament/Resources/ChangelogResource.php index 2f35a4039..5003d4760 100644 --- a/app/Filament/Resources/ChangelogResource.php +++ b/app/Filament/Resources/ChangelogResource.php @@ -3,15 +3,12 @@ namespace App\Filament\Resources; use App\Filament\Resources\ChangelogResource\Pages; -use App\Filament\Resources\ChangelogResource\RelationManagers; -use Wave\Changelog; use Filament\Forms; use Filament\Forms\Form; use Filament\Resources\Resource; use Filament\Tables; use Filament\Tables\Table; -use Illuminate\Database\Eloquent\Builder; -use Illuminate\Database\Eloquent\SoftDeletingScope; +use Wave\Changelog; class ChangelogResource extends Resource { diff --git a/app/Filament/Resources/ChangelogResource/Pages/CreateChangelog.php b/app/Filament/Resources/ChangelogResource/Pages/CreateChangelog.php index c7718df12..7d8ac3232 100644 --- a/app/Filament/Resources/ChangelogResource/Pages/CreateChangelog.php +++ b/app/Filament/Resources/ChangelogResource/Pages/CreateChangelog.php @@ -3,7 +3,6 @@ namespace App\Filament\Resources\ChangelogResource\Pages; use App\Filament\Resources\ChangelogResource; -use Filament\Actions; use Filament\Resources\Pages\CreateRecord; class CreateChangelog extends CreateRecord diff --git a/app/Filament/Resources/FormsResource.php b/app/Filament/Resources/FormsResource.php index 1be5386ef..9be19dc9c 100644 --- a/app/Filament/Resources/FormsResource.php +++ b/app/Filament/Resources/FormsResource.php @@ -2,28 +2,20 @@ namespace App\Filament\Resources; -use Filament\Tables; +use App\Filament\Resources\FormsResource\Pages; use App\Models\Forms; -use Filament\Forms\Set; -use Filament\Forms\Form; -use Filament\Tables\Table; -use Illuminate\Support\Str; -use Filament\Resources\Resource; -use Filament\Forms as FilamentForms; +use Filament\Forms\Components\Repeater; use Filament\Forms\Components\Select; +use Filament\Forms\Components\TextInput; use Filament\Forms\Components\Toggle; -use Filament\Forms\Components\Repeater; - -use Filament\Forms\Components\Textarea; +use Filament\Forms\Form; +use Filament\Forms\Set; +use Filament\Resources\Resource; +use Filament\Tables; use Filament\Tables\Columns\TextColumn; -use Filament\Forms\Components\TextInput; use Filament\Tables\Columns\ToggleColumn; -use Illuminate\Database\Eloquent\Builder; -use Filament\Forms\Components\DateTimePicker; - -use App\Filament\Resources\FormsResource\Pages; -use Illuminate\Database\Eloquent\SoftDeletingScope; -use App\Filament\Resources\FormsResource\RelationManagers; +use Filament\Tables\Table; +use Illuminate\Support\Str; class FormsResource extends Resource { @@ -79,7 +71,7 @@ public static function table(Table $table): Table ->columns([ TextColumn::make('name'), TextColumn::make('slug'), - ToggleColumn::make('is_active') + ToggleColumn::make('is_active'), ]) ->filters([ // diff --git a/app/Filament/Resources/FormsResource/Pages/CreateForms.php b/app/Filament/Resources/FormsResource/Pages/CreateForms.php index e5aadd9e8..9b490c399 100644 --- a/app/Filament/Resources/FormsResource/Pages/CreateForms.php +++ b/app/Filament/Resources/FormsResource/Pages/CreateForms.php @@ -3,7 +3,6 @@ namespace App\Filament\Resources\FormsResource\Pages; use App\Filament\Resources\FormsResource; -use Filament\Actions; use Filament\Resources\Pages\CreateRecord; class CreateForms extends CreateRecord @@ -13,7 +12,7 @@ class CreateForms extends CreateRecord protected function mutateFormDataBeforeCreate(array $data): array { $data['fields'] = json_encode($data['fields'], true); - + return $data; } } diff --git a/app/Filament/Resources/FormsResource/Pages/EditForms.php b/app/Filament/Resources/FormsResource/Pages/EditForms.php index 03c500743..8e5e38e48 100644 --- a/app/Filament/Resources/FormsResource/Pages/EditForms.php +++ b/app/Filament/Resources/FormsResource/Pages/EditForms.php @@ -26,7 +26,7 @@ protected function mutateFormDataBeforeFill(array $data): array } // dd($data['fields']); - + // foreach($data['fields'] as $field){ // $fields[] = json_decode($field, true); // } diff --git a/app/Filament/Resources/PageResource.php b/app/Filament/Resources/PageResource.php index e6f0c2030..efc255c8a 100644 --- a/app/Filament/Resources/PageResource.php +++ b/app/Filament/Resources/PageResource.php @@ -3,18 +3,15 @@ namespace App\Filament\Resources; use App\Filament\Resources\PageResource\Pages; -use App\Filament\Resources\PageResource\RelationManagers; use App\Models\User; -use Wave\Page; use Filament\Forms; use Filament\Forms\Form; +use Filament\Forms\Set; use Filament\Resources\Resource; use Filament\Tables; use Filament\Tables\Table; -use Filament\Forms\Set; use Illuminate\Support\Str; -use Illuminate\Database\Eloquent\Builder; -use Illuminate\Database\Eloquent\SoftDeletingScope; +use Wave\Page; class PageResource extends Resource { diff --git a/app/Filament/Resources/PageResource/Pages/CreatePage.php b/app/Filament/Resources/PageResource/Pages/CreatePage.php index fd61cf1e4..570f4bee8 100644 --- a/app/Filament/Resources/PageResource/Pages/CreatePage.php +++ b/app/Filament/Resources/PageResource/Pages/CreatePage.php @@ -3,7 +3,6 @@ namespace App\Filament\Resources\PageResource\Pages; use App\Filament\Resources\PageResource; -use Filament\Actions; use Filament\Resources\Pages\CreateRecord; class CreatePage extends CreateRecord diff --git a/app/Filament/Resources/PermissionResource.php b/app/Filament/Resources/PermissionResource.php index 78e85707c..8dd3b1ede 100644 --- a/app/Filament/Resources/PermissionResource.php +++ b/app/Filament/Resources/PermissionResource.php @@ -3,15 +3,12 @@ namespace App\Filament\Resources; use App\Filament\Resources\PermissionResource\Pages; -use App\Filament\Resources\PermissionResource\RelationManagers; -use Spatie\Permission\Models\Permission; use Filament\Forms; use Filament\Forms\Form; use Filament\Resources\Resource; use Filament\Tables; use Filament\Tables\Table; -use Illuminate\Database\Eloquent\Builder; -use Illuminate\Database\Eloquent\SoftDeletingScope; +use Spatie\Permission\Models\Permission; class PermissionResource extends Resource { diff --git a/app/Filament/Resources/PermissionResource/Pages/CreatePermission.php b/app/Filament/Resources/PermissionResource/Pages/CreatePermission.php index 7497dc6c3..4db79451b 100644 --- a/app/Filament/Resources/PermissionResource/Pages/CreatePermission.php +++ b/app/Filament/Resources/PermissionResource/Pages/CreatePermission.php @@ -3,7 +3,6 @@ namespace App\Filament\Resources\PermissionResource\Pages; use App\Filament\Resources\PermissionResource; -use Filament\Actions; use Filament\Resources\Pages\CreateRecord; class CreatePermission extends CreateRecord diff --git a/app/Filament/Resources/PlanResource.php b/app/Filament/Resources/PlanResource.php index 21d932426..04598f2da 100644 --- a/app/Filament/Resources/PlanResource.php +++ b/app/Filament/Resources/PlanResource.php @@ -3,17 +3,14 @@ namespace App\Filament\Resources; use App\Filament\Resources\PlanResource\Pages; -use App\Filament\Resources\PlanResource\RelationManagers; -use Wave\Plan; use Filament\Forms; +use Filament\Forms\Components\Section; use Filament\Forms\Form; use Filament\Resources\Resource; use Filament\Tables; use Filament\Tables\Table; -use Filament\Forms\Components\Section; use Spatie\Permission\Models\Role; -use Illuminate\Database\Eloquent\Builder; -use Illuminate\Database\Eloquent\SoftDeletingScope; +use Wave\Plan; class PlanResource extends Resource { @@ -50,7 +47,7 @@ public static function form(Form $form): Form ])->columns(2), Section::make('Plan Pricing') ->description('Add the pricing details for your plans below') - ->schema([ + ->schema([ Forms\Components\TextInput::make('monthly_price_id') ->label('Monthly Price ID') ->hint('Stripe/Paddle ID') @@ -76,7 +73,7 @@ public static function form(Form $form): Form Forms\Components\Toggle::make('active') ->required(), Forms\Components\Toggle::make('default') - ->required() + ->required(), ])->columns(2), Section::make('Associated Role') ->description('When the user subscribes to this plan, what role should they be assigned?') @@ -86,7 +83,7 @@ public static function form(Form $form): Form ->options(Role::all()->pluck('name', 'id')) ->searchable() ->required(), - ]) + ]), ]); } @@ -100,7 +97,7 @@ public static function table(Table $table): Table ->numeric() ->sortable(), Tables\Columns\BooleanColumn::make('active') - ->sortable(), + ->sortable(), Tables\Columns\TextColumn::make('created_at') ->dateTime() ->sortable() diff --git a/app/Filament/Resources/PlanResource/Pages/CreatePlan.php b/app/Filament/Resources/PlanResource/Pages/CreatePlan.php index 20e28dad6..836c6fae5 100644 --- a/app/Filament/Resources/PlanResource/Pages/CreatePlan.php +++ b/app/Filament/Resources/PlanResource/Pages/CreatePlan.php @@ -3,7 +3,6 @@ namespace App\Filament\Resources\PlanResource\Pages; use App\Filament\Resources\PlanResource; -use Filament\Actions; use Filament\Resources\Pages\CreateRecord; class CreatePlan extends CreateRecord diff --git a/app/Filament/Resources/PostResource.php b/app/Filament/Resources/PostResource.php index 25df23536..67d7784cb 100644 --- a/app/Filament/Resources/PostResource.php +++ b/app/Filament/Resources/PostResource.php @@ -3,19 +3,16 @@ namespace App\Filament\Resources; use App\Filament\Resources\PostResource\Pages; -use App\Filament\Resources\PostResource\RelationManagers; use App\Models\User; -use Wave\Post; -use Wave\Category; use Filament\Forms; use Filament\Forms\Form; +use Filament\Forms\Set; use Filament\Resources\Resource; use Filament\Tables; use Filament\Tables\Table; -use Filament\Forms\Set; use Illuminate\Support\Str; -use Illuminate\Database\Eloquent\Builder; -use Illuminate\Database\Eloquent\SoftDeletingScope; +use Wave\Category; +use Wave\Post; class PostResource extends Resource { diff --git a/app/Filament/Resources/PostResource/Pages/CreatePost.php b/app/Filament/Resources/PostResource/Pages/CreatePost.php index 0b3cee4b1..d166bebf7 100644 --- a/app/Filament/Resources/PostResource/Pages/CreatePost.php +++ b/app/Filament/Resources/PostResource/Pages/CreatePost.php @@ -3,7 +3,6 @@ namespace App\Filament\Resources\PostResource\Pages; use App\Filament\Resources\PostResource; -use Filament\Actions; use Filament\Resources\Pages\CreateRecord; class CreatePost extends CreateRecord diff --git a/app/Filament/Resources/RoleResource.php b/app/Filament/Resources/RoleResource.php index fd6be73cb..ecf49b62d 100644 --- a/app/Filament/Resources/RoleResource.php +++ b/app/Filament/Resources/RoleResource.php @@ -3,15 +3,12 @@ namespace App\Filament\Resources; use App\Filament\Resources\RoleResource\Pages; -use App\Filament\Resources\RoleResource\RelationManagers; -use Spatie\Permission\Models\Role; use Filament\Forms; use Filament\Forms\Form; use Filament\Resources\Resource; use Filament\Tables; use Filament\Tables\Table; -use Illuminate\Database\Eloquent\Builder; -use Illuminate\Database\Eloquent\SoftDeletingScope; +use Spatie\Permission\Models\Role; class RoleResource extends Resource { diff --git a/app/Filament/Resources/RoleResource/Pages/CreateRole.php b/app/Filament/Resources/RoleResource/Pages/CreateRole.php index ee86d4349..0891e261e 100644 --- a/app/Filament/Resources/RoleResource/Pages/CreateRole.php +++ b/app/Filament/Resources/RoleResource/Pages/CreateRole.php @@ -3,7 +3,6 @@ namespace App\Filament\Resources\RoleResource\Pages; use App\Filament\Resources\RoleResource; -use Filament\Actions; use Filament\Resources\Pages\CreateRecord; class CreateRole extends CreateRecord diff --git a/app/Filament/Resources/SettingResource.php b/app/Filament/Resources/SettingResource.php index b205b7846..bcc5789d1 100644 --- a/app/Filament/Resources/SettingResource.php +++ b/app/Filament/Resources/SettingResource.php @@ -3,15 +3,12 @@ namespace App\Filament\Resources; use App\Filament\Resources\SettingResource\Pages; -use App\Filament\Resources\SettingResource\RelationManagers; -use Wave\Setting; use Filament\Forms; use Filament\Forms\Form; use Filament\Resources\Resource; use Filament\Tables; use Filament\Tables\Table; -use Illuminate\Database\Eloquent\Builder; -use Illuminate\Database\Eloquent\SoftDeletingScope; +use Wave\Setting; class SettingResource extends Resource { diff --git a/app/Filament/Resources/SettingResource/Pages/CreateSetting.php b/app/Filament/Resources/SettingResource/Pages/CreateSetting.php index 19051060a..9ca35716c 100644 --- a/app/Filament/Resources/SettingResource/Pages/CreateSetting.php +++ b/app/Filament/Resources/SettingResource/Pages/CreateSetting.php @@ -2,10 +2,9 @@ namespace App\Filament\Resources\SettingResource\Pages; -use Illuminate\Support\Facades\Cache; use App\Filament\Resources\SettingResource; -use Filament\Actions; use Filament\Resources\Pages\CreateRecord; +use Illuminate\Support\Facades\Cache; class CreateSetting extends CreateRecord { diff --git a/app/Filament/Resources/SettingResource/Pages/EditSetting.php b/app/Filament/Resources/SettingResource/Pages/EditSetting.php index c3472aeb8..71c364a3a 100644 --- a/app/Filament/Resources/SettingResource/Pages/EditSetting.php +++ b/app/Filament/Resources/SettingResource/Pages/EditSetting.php @@ -2,10 +2,10 @@ namespace App\Filament\Resources\SettingResource\Pages; -use Illuminate\Support\Facades\Cache; use App\Filament\Resources\SettingResource; use Filament\Actions; use Filament\Resources\Pages\EditRecord; +use Illuminate\Support\Facades\Cache; class EditSetting extends EditRecord { diff --git a/app/Filament/Resources/SettingResource/Pages/ListSettings.php b/app/Filament/Resources/SettingResource/Pages/ListSettings.php index 16171e646..501d5c456 100644 --- a/app/Filament/Resources/SettingResource/Pages/ListSettings.php +++ b/app/Filament/Resources/SettingResource/Pages/ListSettings.php @@ -2,10 +2,10 @@ namespace App\Filament\Resources\SettingResource\Pages; -use Illuminate\Support\Facades\Cache; use App\Filament\Resources\SettingResource; use Filament\Actions; use Filament\Resources\Pages\ListRecords; +use Illuminate\Support\Facades\Cache; class ListSettings extends ListRecords { diff --git a/app/Filament/Resources/UserResource.php b/app/Filament/Resources/UserResource.php index efa51ceda..19f69f249 100644 --- a/app/Filament/Resources/UserResource.php +++ b/app/Filament/Resources/UserResource.php @@ -2,19 +2,14 @@ namespace App\Filament\Resources; +use App\Filament\Resources\UserResource\Pages; use App\Models\User; use Filament\Forms; -use Filament\Tables; -use Filament\Forms\Get; -use Filament\Forms\Set; use Filament\Forms\Form; -use Filament\Tables\Table; use Filament\Resources\Resource; +use Filament\Tables; +use Filament\Tables\Table; use Illuminate\Support\Facades\Hash; -use Illuminate\Database\Eloquent\Builder; -use App\Filament\Resources\UserResource\Pages; -use Illuminate\Database\Eloquent\SoftDeletingScope; -use App\Filament\Resources\UserResource\RelationManagers; class UserResource extends Resource { @@ -56,11 +51,10 @@ public static function form(Form $form): Form Forms\Components\DateTimePicker::make('trial_ends_at'), Forms\Components\TextInput::make('verification_code') ->maxLength(191), - Forms\Components\Toggle::make('verified') + Forms\Components\Toggle::make('verified'), ]); } - public static function table(Table $table): Table { return $table @@ -73,7 +67,7 @@ public static function table(Table $table): Table ->circular() ->defaultImageUrl(url('storage/demo/default.png')), Tables\Columns\TextColumn::make('username') - ->searchable() + ->searchable(), ]) ->filters([ // diff --git a/app/Filament/Resources/UserResource/Pages/CreateUser.php b/app/Filament/Resources/UserResource/Pages/CreateUser.php index 73aa46d00..78a389490 100644 --- a/app/Filament/Resources/UserResource/Pages/CreateUser.php +++ b/app/Filament/Resources/UserResource/Pages/CreateUser.php @@ -3,7 +3,6 @@ namespace App\Filament\Resources\UserResource\Pages; use App\Filament\Resources\UserResource; -use Filament\Actions; use Filament\Resources\Pages\CreateRecord; class CreateUser extends CreateRecord diff --git a/app/Http/Controllers/Api/ApiController.php b/app/Http/Controllers/Api/ApiController.php index 61aaf3384..2191af141 100644 --- a/app/Http/Controllers/Api/ApiController.php +++ b/app/Http/Controllers/Api/ApiController.php @@ -2,14 +2,12 @@ namespace App\Http\Controllers\Api; -use Illuminate\Database\Eloquent\Model; -use Illuminate\Http\Request; -use Illuminate\Support\Facades\DB; use App\Http\Controllers\Controller; class ApiController extends Controller { - public function posts(){ + public function posts() + { return \App\Models\Post::all(); } -} \ No newline at end of file +} diff --git a/app/Http/Controllers/Auth/ForgotPasswordController.php b/app/Http/Controllers/Auth/ForgotPasswordController.php index 3979cf24d..2db66e23a 100644 --- a/app/Http/Controllers/Auth/ForgotPasswordController.php +++ b/app/Http/Controllers/Auth/ForgotPasswordController.php @@ -4,7 +4,4 @@ use Wave\Http\Controllers\Auth\ForgotPasswordController as AuthForgotPasswordController; -class ForgotPasswordController extends AuthForgotPasswordController -{ - -} +class ForgotPasswordController extends AuthForgotPasswordController {} diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php index c02d83034..d24e007d3 100644 --- a/app/Http/Controllers/Auth/RegisterController.php +++ b/app/Http/Controllers/Auth/RegisterController.php @@ -4,7 +4,4 @@ use Wave\Http\Controllers\Auth\RegisterController as AuthRegisterController; -class RegisterController extends AuthRegisterController -{ - -} +class RegisterController extends AuthRegisterController {} diff --git a/app/Http/Controllers/Auth/ResetPasswordController.php b/app/Http/Controllers/Auth/ResetPasswordController.php index a4d8a1a6f..9dcd05d76 100644 --- a/app/Http/Controllers/Auth/ResetPasswordController.php +++ b/app/Http/Controllers/Auth/ResetPasswordController.php @@ -4,7 +4,4 @@ use Wave\Http\Controllers\Auth\ResetPasswordController as AuthResetPasswordController; -class ResetPasswordController extends AuthResetPasswordController -{ - -} +class ResetPasswordController extends AuthResetPasswordController {} diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php index 6162fde7f..66849fbda 100644 --- a/app/Http/Kernel.php +++ b/app/Http/Kernel.php @@ -21,7 +21,7 @@ class Kernel extends HttpKernel \Illuminate\Foundation\Http\Middleware\ValidatePostSize::class, \App\Http\Middleware\TrimStrings::class, \Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class, - \Filament\Http\Middleware\DisableBladeIconComponents::class + \Filament\Http\Middleware\DisableBladeIconComponents::class, ]; /** @@ -37,7 +37,7 @@ class Kernel extends HttpKernel \Illuminate\View\Middleware\ShareErrorsFromSession::class, \App\Http\Middleware\VerifyCsrfToken::class, \Illuminate\Routing\Middleware\SubstituteBindings::class, - \RalphJSmit\Livewire\Urls\Middleware\LivewireUrlsMiddleware::class + \RalphJSmit\Livewire\Urls\Middleware\LivewireUrlsMiddleware::class, ], 'api' => [ diff --git a/app/Http/Middleware/EncryptCookies.php b/app/Http/Middleware/EncryptCookies.php index a5b2f887a..1a06e73be 100644 --- a/app/Http/Middleware/EncryptCookies.php +++ b/app/Http/Middleware/EncryptCookies.php @@ -12,6 +12,6 @@ class EncryptCookies extends Middleware * @var array */ protected $except = [ - 'theme' + 'theme', ]; } diff --git a/app/Http/Middleware/HttpsRedirect.php b/app/Http/Middleware/HttpsRedirect.php index 0c617a9df..f237280e3 100644 --- a/app/Http/Middleware/HttpsRedirect.php +++ b/app/Http/Middleware/HttpsRedirect.php @@ -10,12 +10,11 @@ class HttpsRedirect * Handle an incoming request. * * @param \Illuminate\Http\Request $request - * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { - if (!$request->secure() && app()->environment('production')) { + if (! $request->secure() && app()->environment('production')) { return redirect()->secure($request->getRequestUri()); } diff --git a/app/Http/Middleware/RedirectIfAuthenticated.php b/app/Http/Middleware/RedirectIfAuthenticated.php index a2813a064..4e7c24b7e 100644 --- a/app/Http/Middleware/RedirectIfAuthenticated.php +++ b/app/Http/Middleware/RedirectIfAuthenticated.php @@ -12,7 +12,6 @@ class RedirectIfAuthenticated /** * Handle an incoming request. * - * @param \Illuminate\Http\Request $request * @param \Closure(\Illuminate\Http\Request): (\Illuminate\Http\Response|\Illuminate\Http\RedirectResponse) $next * @param string|null ...$guards * @return \Illuminate\Http\Response|\Illuminate\Http\RedirectResponse diff --git a/app/Http/Middleware/VerifyCsrfToken.php b/app/Http/Middleware/VerifyCsrfToken.php index 402267b0c..711cd7372 100644 --- a/app/Http/Middleware/VerifyCsrfToken.php +++ b/app/Http/Middleware/VerifyCsrfToken.php @@ -13,6 +13,6 @@ class VerifyCsrfToken extends Middleware */ protected $except = [ '/webhook/paddle', - '/webhook/stripe' + '/webhook/stripe', ]; } diff --git a/app/Listeners/UserRegistered.php b/app/Listeners/UserRegistered.php index 6c9e37a7d..a17f84745 100644 --- a/app/Listeners/UserRegistered.php +++ b/app/Listeners/UserRegistered.php @@ -3,8 +3,6 @@ namespace App\Listeners; use Illuminate\Auth\Events\Registered; -use Illuminate\Contracts\Queue\ShouldQueue; -use Illuminate\Queue\InteractsWithQueue; class UserRegistered { diff --git a/app/Models/Category.php b/app/Models/Category.php index d41bf42d3..40445500e 100644 --- a/app/Models/Category.php +++ b/app/Models/Category.php @@ -4,7 +4,4 @@ use Illuminate\Database\Eloquent\Model; -class Category extends Model -{ - -} +class Category extends Model {} diff --git a/app/Models/Post.php b/app/Models/Post.php index ca66d4833..a68fb04e2 100644 --- a/app/Models/Post.php +++ b/app/Models/Post.php @@ -3,10 +3,8 @@ namespace App\Models; use Wave\Post as WavePost; -use Illuminate\Support\Facades\Storage; class Post extends WavePost { public $guarded = []; - } diff --git a/app/Models/User.php b/app/Models/User.php index 827bc45fd..432160bd9 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -2,14 +2,14 @@ namespace App\Models; -use Illuminate\Support\Str; -use Wave\User as WaveUser; use Illuminate\Notifications\Notifiable; +use Illuminate\Support\Str; use Wave\Traits\HasProfileKeyValues; +use Wave\User as WaveUser; class User extends WaveUser { - use Notifiable, HasProfileKeyValues; + use HasProfileKeyValues, Notifiable; public $guard_name = 'web'; @@ -43,7 +43,7 @@ class User extends WaveUser protected static function boot() { parent::boot(); - + // Listen for the creating event of the model static::creating(function ($user) { // Check if the username attribute is empty @@ -52,7 +52,7 @@ protected static function boot() $username = Str::slug($user->name, ''); $i = 1; while (self::where('username', $username)->exists()) { - $username = Str::slug($user->name, '') . $i; + $username = Str::slug($user->name, '').$i; $i++; } $user->username = $username; @@ -64,7 +64,7 @@ protected static function boot() // Remove all roles $user->syncRoles([]); // Assign the default role - $user->assignRole( config('wave.default_user_role', 'registered') ); + $user->assignRole(config('wave.default_user_role', 'registered')); }); } } diff --git a/app/Notifications/TestNotification.php b/app/Notifications/TestNotification.php index 2d5ef0056..d5c26fa08 100644 --- a/app/Notifications/TestNotification.php +++ b/app/Notifications/TestNotification.php @@ -3,7 +3,6 @@ namespace App\Notifications; use Illuminate\Bus\Queueable; -use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Notification; @@ -35,9 +34,9 @@ public function via(object $notifiable): array public function toMail(object $notifiable): MailMessage { return (new MailMessage) - ->line('The introduction to the notification.') - ->action('Notification Action', url('/')) - ->line('Thank you for using our application!'); + ->line('The introduction to the notification.') + ->action('Notification Action', url('/')) + ->line('Thank you for using our application!'); } /** @@ -52,9 +51,8 @@ public function toArray($notifiable) 'body' => 'This is an example, when the user clicks this notification it will go to the link.', 'link' => '/dashboard', 'user' => [ - 'name' => 'John Doe' - ] + 'name' => 'John Doe', + ], ]; } - } diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php index 3ccc5978a..1a53ca6f0 100644 --- a/app/Providers/AppServiceProvider.php +++ b/app/Providers/AppServiceProvider.php @@ -2,9 +2,9 @@ namespace App\Providers; +use Illuminate\Support\Facades\Schema; use Illuminate\Support\Facades\Validator; use Illuminate\Support\ServiceProvider; -use Illuminate\Support\Facades\Schema; class AppServiceProvider extends ServiceProvider { @@ -47,12 +47,12 @@ public function boot() ); // check file format - if (!in_array($format, $allow)) { + if (! in_array($format, $allow)) { return false; } // check base64 format - if (!preg_match('%^[a-zA-Z0-9/+]*={0,2}$%', $explode[1])) { + if (! preg_match('%^[a-zA-Z0-9/+]*={0,2}$%', $explode[1])) { return false; } @@ -64,7 +64,7 @@ private function setSchemaDefaultLength(): void { try { Schema::defaultStringLength(191); + } catch (\Exception $exception) { } - catch (\Exception $exception){} } } diff --git a/app/Providers/AuthServiceProvider.php b/app/Providers/AuthServiceProvider.php index 41c7c45c9..40357dbf3 100644 --- a/app/Providers/AuthServiceProvider.php +++ b/app/Providers/AuthServiceProvider.php @@ -3,7 +3,6 @@ namespace App\Providers; use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; -use Illuminate\Support\Facades\Gate; class AuthServiceProvider extends ServiceProvider { diff --git a/app/Providers/Filament/AdminPanelProvider.php b/app/Providers/Filament/AdminPanelProvider.php index 128b42ef0..0c1f27b39 100644 --- a/app/Providers/Filament/AdminPanelProvider.php +++ b/app/Providers/Filament/AdminPanelProvider.php @@ -2,35 +2,24 @@ namespace App\Providers\Filament; -use Wave\Widgets; -use Filament\Pages; +use Filament\Facades\Filament; +use Filament\Http\Middleware\Authenticate; +use Filament\Http\Middleware\DisableBladeIconComponents; +use Filament\Http\Middleware\DispatchServingFilamentEvent; use Filament\Panel; +// use Filament\Widgets; +// use BezhanSalleh\FilamentGoogleAnalytics\Widgets; use Filament\PanelProvider; use Filament\Support\Colors\Color; -use Filament\View\PanelsRenderHook; -use Illuminate\Support\Facades\Blade; -//use Filament\Widgets; -// use BezhanSalleh\FilamentGoogleAnalytics\Widgets; -use Filament\Http\Middleware\Authenticate; -use Illuminate\Session\Middleware\StartSession; +use Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse; use Illuminate\Cookie\Middleware\EncryptCookies; +use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken; use Illuminate\Routing\Middleware\SubstituteBindings; use Illuminate\Session\Middleware\AuthenticateSession; +use Illuminate\Session\Middleware\StartSession; +use Illuminate\Support\Facades\Blade; use Illuminate\View\Middleware\ShareErrorsFromSession; -use Filament\Http\Middleware\DisableBladeIconComponents; -use Filament\Http\Middleware\DispatchServingFilamentEvent; - -use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken; -use Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse; - -use Filament\Facades\Filament; -use Filament\Navigation\NavigationBuilder; -use Filament\Navigation\NavigationGroup; -use Filament\Navigation\NavigationItem; - -use App\Filament\Resources\UserResource; -use App\Filament\Resources\RoleResource; -use App\Filament\Resources\PlanResource; +use Wave\Widgets; class AdminPanelProvider extends PanelProvider { @@ -42,6 +31,7 @@ public static function getNavigationIcon(): ?string } private $dynamicWidgets = []; + public function panel(Panel $panel): Panel { $this->renderAnalyticsIfCredentialsExist(); @@ -95,17 +85,18 @@ public function panel(Panel $panel): Panel // \App\Http\Middleware\WaveEditTab::class ]) ->authMiddleware([ - Authenticate::class + Authenticate::class, ]) ->brandLogo(fn () => view('wave::admin.logo')) ->darkModeBrandLogo(fn () => view('wave::admin.logo-dark')); } - // This function will render if user has account crenditals file + // This function will render if user has account crenditals file // located at storage/app/analytics/service-account-credentials.json // Find More details here: https://github.com/spatie/laravel-analytics - private function renderAnalyticsIfCredentialsExist(){ - if(file_exists(storage_path('app/analytics/service-account-credentials.json'))){ + private function renderAnalyticsIfCredentialsExist() + { + if (file_exists(storage_path('app/analytics/service-account-credentials.json'))) { \Config::set('filament-google-analytics.page_views.filament_dashboard', true); \Config::set('filament-google-analytics.active_users_one_day.filament_dashboard', true); \Config::set('filament-google-analytics.active_users_seven_day.filament_dashboard', true); diff --git a/app/Providers/FolioServiceProvider.php b/app/Providers/FolioServiceProvider.php index 32207c3bb..cb1d2812e 100644 --- a/app/Providers/FolioServiceProvider.php +++ b/app/Providers/FolioServiceProvider.php @@ -3,7 +3,6 @@ namespace App\Providers; use Illuminate\Support\ServiceProvider; -use Laravel\Folio\Folio; class FolioServiceProvider extends ServiceProvider { @@ -18,8 +17,5 @@ public function register(): void /** * Bootstrap services. */ - public function boot(): void - { - - } + public function boot(): void {} } diff --git a/config/devdojo/billing/keys.php b/config/devdojo/billing/keys.php index 6bc2f6508..ea98c03dc 100644 --- a/config/devdojo/billing/keys.php +++ b/config/devdojo/billing/keys.php @@ -4,12 +4,12 @@ 'stripe' => [ 'publishable_key' => env('STRIPE_PUBLISHABLE_KEY'), 'secret_key' => env('STRIPE_SECRET_KEY'), - 'webhook_secret' => env('STRIPE_WEBHOOK_SECRET') + 'webhook_secret' => env('STRIPE_WEBHOOK_SECRET'), ], 'paddle' => [ 'vendor_id' => env('PADDLE_VENDOR_ID'), 'api_key' => env('PADDLE_API_KEY'), 'env' => env('PADDLE_ENV'), 'public_key' => env('PADDLE_PUBLIC_KEY'), - ] -]; \ No newline at end of file + ], +]; diff --git a/config/devdojo/billing/language.php b/config/devdojo/billing/language.php index e1d2acbeb..ab3101f18 100644 --- a/config/devdojo/billing/language.php +++ b/config/devdojo/billing/language.php @@ -5,6 +5,6 @@ 'header' => 'Subscribe to a Plan Below', 'description' => 'Select a plan below. This description text is editable inside the devdojo.billing.language file.', 'sidebar_description' => 'Welcome to the checkout page for your SaaS product. This sidebar description text is customizable from inside the devdojo.billing.language config.', - 'notification' => '' - ] -]; \ No newline at end of file + 'notification' => '', + ], +]; diff --git a/config/devdojo/billing/style.php b/config/devdojo/billing/style.php index 008949f55..97cdce9b8 100644 --- a/config/devdojo/billing/style.php +++ b/config/devdojo/billing/style.php @@ -2,5 +2,5 @@ return [ 'color' => 'blue', // black, white, red, green, blue, yellow, orange, pink, purple - 'logo_height' => '36' -]; \ No newline at end of file + 'logo_height' => '36', +]; diff --git a/config/discussions.php b/config/discussions.php index e29364d4c..d2fb71abb 100644 --- a/config/discussions.php +++ b/config/discussions.php @@ -4,11 +4,11 @@ 'headline_logo' => '/vendor/foundationapp/discussions/assets/images/logo-light.png', 'user' => [ - 'namespace' => 'App\Models\User', + 'namespace' => 'App\Models\User', 'database_field_with_user_name' => 'name', - 'relative_url_to_profile' => '', - 'relative_url_to_image_assets' => '', - 'avatar_image_database_field' => '', + 'relative_url_to_profile' => '', + 'relative_url_to_image_assets' => '', + 'avatar_image_database_field' => '', ], 'load_more' => [ @@ -39,7 +39,7 @@ 'security' => [ 'limit_time_between_posts' => true, // true or false - 'time_between_posts' => 1, // In minutes + 'time_between_posts' => 1, // In minutes ], /* @@ -56,7 +56,7 @@ 'sidebar_width' => 'w-56', 'container_classes' => 'max-w-7xl md:px-12 xl:px-20 mx-auto py-12', 'container_max_width' => 'max-w-[1120px]', - 'header_classes' => 'dark:text-white text-gray-900 text-4xl font-semibold tracking-tighter' + 'header_classes' => 'dark:text-white text-gray-900 text-4xl font-semibold tracking-tighter', ], /* @@ -111,6 +111,6 @@ 'icon' => '🙌', 'title' => 'Show and tell', 'description' => 'Show off something you\'ve made', - ] + ], ], ]; diff --git a/config/features.php b/config/features.php index 75d90f278..c13ad5870 100644 --- a/config/features.php +++ b/config/features.php @@ -1,64 +1,64 @@ 'Authentication', 'description' => 'Fully loaded authentication, email verification, and password reset. Authentication in a snap!', - 'image' => '/themes/tailwind/images/authentication.png' + 'image' => '/themes/tailwind/images/authentication.png', ], - (object)[ + (object) [ 'title' => 'User Profiles', 'description' => 'Customizable user profiles. Allow your users to enter data and easily customize their user profiles.', - 'image' => '/themes/tailwind/images/profile.png' + 'image' => '/themes/tailwind/images/profile.png', ], - (object)[ + (object) [ 'title' => 'User Impersonation', 'description' => 'With user impersonations you can login as another user and resolve an issue or troubleshoot a bug.', - 'image' => '/themes/tailwind/images/impersonation.png' + 'image' => '/themes/tailwind/images/impersonation.png', ], - (object)[ + (object) [ 'title' => 'Subscriptions', 'description' => 'Allow users to pay for your service and signup for a subscription using Paddle Payments.', - 'image' => '/themes/tailwind/images/subscriptions.png' + 'image' => '/themes/tailwind/images/subscriptions.png', ], - (object)[ + (object) [ 'title' => 'Subscription Plans', 'description' => 'Create new plans with different features and intrigue your users to subscribe to any plan.', - 'image' => '/themes/tailwind/images/plans.png' + 'image' => '/themes/tailwind/images/plans.png', ], - (object)[ + (object) [ 'title' => 'User Roles', 'description' => 'Grant user permissions based on roles, you can then assign a role to a specific plan.', - 'image' => '/themes/tailwind/images/roles.png' + 'image' => '/themes/tailwind/images/roles.png', ], - (object)[ + (object) [ 'title' => 'Notifications', 'description' => 'Ready-to-use Notification System which integrates with the default Laravel notification feature.', - 'image' => '/themes/tailwind/images/notifications.png' + 'image' => '/themes/tailwind/images/notifications.png', ], - (object)[ + (object) [ 'title' => 'Announcements', 'description' => 'Create user announcements to notify users about new features or updates in your application.', - 'image' => '/themes/tailwind/images/announcements.png' + 'image' => '/themes/tailwind/images/announcements.png', ], - (object)[ + (object) [ 'title' => 'Blog', 'description' => 'Equipped with a fully-functional blog. Write posts related to your product to gain free SEO traffic.', - 'image' => '/themes/tailwind/images/blog.png' + 'image' => '/themes/tailwind/images/blog.png', ], - (object)[ + (object) [ 'title' => 'Fully Functional API', 'description' => 'Ready-to-consume API for your application. Create API tokens with role specific permissions.', - 'image' => '/themes/tailwind/images/api.png' + 'image' => '/themes/tailwind/images/api.png', ], - (object)[ + (object) [ 'title' => 'Voyager Admin', 'description' => 'Wave has been crafted using Laravel & Voyager, which makes administering your app a breeze!', - 'image' => '/themes/tailwind/images/admin.png' + 'image' => '/themes/tailwind/images/admin.png', ], - (object)[ + (object) [ 'title' => 'Themes', 'description' => 'Fully configurable themes. Choose from a few starter themes to begin configuring to make it your own.', - 'image' => '/themes/tailwind/images/themes.png' - ] + 'image' => '/themes/tailwind/images/themes.png', + ], ]; diff --git a/config/forms.php b/config/forms.php index c6dfd6a8c..00e09b802 100644 --- a/config/forms.php +++ b/config/forms.php @@ -16,6 +16,6 @@ 'TimePicker' => 'Time Picker', 'FileUpload' => 'File Upload', 'TagsInput' => 'Tags Input', - 'ColorPicker' => 'Color Picker' - ] -]; \ No newline at end of file + 'ColorPicker' => 'Color Picker', + ], +]; diff --git a/config/image.php b/config/image.php index 2b1d2c3e1..67983819d 100644 --- a/config/image.php +++ b/config/image.php @@ -15,6 +15,6 @@ | */ - 'driver' => 'gd' + 'driver' => 'gd', ]; diff --git a/config/permission.php b/config/permission.php index c6248a423..74c6402d2 100644 --- a/config/permission.php +++ b/config/permission.php @@ -75,8 +75,8 @@ /* * Change this if you want to name the related pivots other than defaults */ - 'role_pivot_key' => null, //default 'role_id', - 'permission_pivot_key' => null, //default 'permission_id', + 'role_pivot_key' => null, // default 'role_id', + 'permission_pivot_key' => null, // default 'permission_id', /* * Change this if you want to name the related model primary key other than @@ -183,4 +183,4 @@ 'store' => 'default', ], -]; \ No newline at end of file +]; diff --git a/config/profile.php b/config/profile.php index 1d7c4a475..bdd4645ae 100644 --- a/config/profile.php +++ b/config/profile.php @@ -1,16 +1,16 @@ [ - 'about' => [ - 'label' => 'About', - 'type' => 'Textarea', - 'rules' => 'required' + 'fields' => [ + 'about' => [ + 'label' => 'About', + 'type' => 'Textarea', + 'rules' => 'required', ], - 'occupation' => [ + 'occupation' => [ 'label' => 'What do you do for a living?', 'type' => 'TextInput', - 'rules' => '' - ] - ], + 'rules' => '', + ], + ], ]; diff --git a/config/services.php b/config/services.php index de4592214..bec669af4 100644 --- a/config/services.php +++ b/config/services.php @@ -33,6 +33,6 @@ 'sparkpost' => [ 'secret' => env('SPARKPOST_SECRET'), - ] + ], ]; diff --git a/config/style.php b/config/style.php index 90645550b..15202c210 100644 --- a/config/style.php +++ b/config/style.php @@ -1,6 +1,6 @@ '#FF69B4' - 'primary_color' => '#000000' + // 'primary_color' => '#FF69B4' + 'primary_color' => '#000000', ]; diff --git a/config/themes.php b/config/themes.php index ae7f432c6..87fa6732f 100644 --- a/config/themes.php +++ b/config/themes.php @@ -1,7 +1,7 @@ resource_path('themes'), - 'publish_assets' => false, - 'create_tables' => false -]; \ No newline at end of file + 'folder' => resource_path('themes'), + 'publish_assets' => false, + 'create_tables' => false, +]; diff --git a/config/voyager.php b/config/voyager.php index 82850c48d..e4c510ec9 100644 --- a/config/voyager.php +++ b/config/voyager.php @@ -12,9 +12,9 @@ 'user' => [ 'add_default_role_on_register' => true, - 'default_role' => 'trial', - 'namespace' => \App\Models\User::class, - 'default_avatar' => 'demo/default.png', + 'default_role' => 'trial', + 'namespace' => \App\Models\User::class, + 'default_avatar' => 'demo/default.png', ], /* @@ -42,7 +42,7 @@ */ 'models' => [ - //'namespace' => 'App\\', + // 'namespace' => 'App\\', ], /* @@ -136,7 +136,7 @@ */ 'locales' => [ 'en', - //'pt', + // 'pt', ], ], @@ -153,17 +153,17 @@ // Add custom list items to navbar's dropdown 'navbar_items' => [ 'Profile' => [ - 'route' => 'voyager.profile', - 'classes' => 'class-full-of-rum', + 'route' => 'voyager.profile', + 'classes' => 'class-full-of-rum', 'icon_class' => 'voyager-person', ], 'Home' => [ - 'route' => '/', - 'icon_class' => 'voyager-home', + 'route' => '/', + 'icon_class' => 'voyager-home', 'target_blank' => true, ], 'Logout' => [ - 'route' => 'voyager.logout', + 'route' => 'voyager.logout', 'icon_class' => 'voyager-power', ], ], @@ -210,16 +210,16 @@ ], 'additional_js' => [ - //'js/custom.js', + // 'js/custom.js', ], 'googlemaps' => [ - 'key' => env('GOOGLE_MAPS_KEY', ''), - 'center' => [ - 'lat' => env('GOOGLE_MAPS_DEFAULT_CENTER_LAT', '32.715738'), - 'lng' => env('GOOGLE_MAPS_DEFAULT_CENTER_LNG', '-117.161084'), - ], - 'zoom' => env('GOOGLE_MAPS_DEFAULT_ZOOM', 11), - ], + 'key' => env('GOOGLE_MAPS_KEY', ''), + 'center' => [ + 'lat' => env('GOOGLE_MAPS_DEFAULT_CENTER_LAT', '32.715738'), + 'lng' => env('GOOGLE_MAPS_DEFAULT_CENTER_LNG', '-117.161084'), + ], + 'zoom' => env('GOOGLE_MAPS_DEFAULT_ZOOM', 11), + ], ]; diff --git a/config/wave.php b/config/wave.php index c2fb23ded..a05535550 100644 --- a/config/wave.php +++ b/config/wave.php @@ -2,45 +2,45 @@ return [ - 'profile_fields' => [ - 'about' => [ - 'label' => 'About', - 'field' => 'textarea', - 'validation' => 'required' - ] - ], - - 'api' => [ - 'auth_token_expires' => 60, - 'key_token_expires' => 1, - ], - - 'auth' => [ - 'min_password_length' => 5, - ], - - 'primary_color' => '#000000', - - 'user_model' => \App\Models\User::class, - 'show_docs' => env('WAVE_DOCS', true), + 'profile_fields' => [ + 'about' => [ + 'label' => 'About', + 'field' => 'textarea', + 'validation' => 'required', + ], + ], + + 'api' => [ + 'auth_token_expires' => 60, + 'key_token_expires' => 1, + ], + + 'auth' => [ + 'min_password_length' => 5, + ], + + 'primary_color' => '#000000', + + 'user_model' => \App\Models\User::class, + 'show_docs' => env('WAVE_DOCS', true), 'demo' => env('WAVE_DEMO', false), 'dev_bar' => env('WAVE_BAR', false), - 'default_user_role' => 'registered', + 'default_user_role' => 'registered', - 'billing_provider' => env('BILLING_PROVIDER', 'stripe'), + 'billing_provider' => env('BILLING_PROVIDER', 'stripe'), 'paddle' => [ 'vendor' => env('PADDLE_VENDOR_ID', ''), - 'api_key' => env('PADDLE_API_KEY', ''), + 'api_key' => env('PADDLE_API_KEY', ''), 'env' => env('PADDLE_ENV', 'sandbox'), 'public_key' => env('PADDLE_PUBLIC_KEY', ''), - 'webhook_secret' => env('PADDLE_WEBHOOK_SECRET', '') - ], + 'webhook_secret' => env('PADDLE_WEBHOOK_SECRET', ''), + ], - 'stripe' => [ + 'stripe' => [ 'publishable_key' => env('STRIPE_PUBLISHABLE_KEY'), 'secret_key' => env('STRIPE_SECRET_KEY'), - 'webhook_secret' => env('STRIPE_WEBHOOK_SECRET') + 'webhook_secret' => env('STRIPE_WEBHOOK_SECRET'), ], ]; diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php index a5a90138d..d1e96d657 100644 --- a/database/factories/UserFactory.php +++ b/database/factories/UserFactory.php @@ -17,8 +17,6 @@ class UserFactory extends Factory /** * Define the model's default state. - * - * @return array */ public function definition(): array { diff --git a/database/seeders/ApiKeysTableSeeder.php b/database/seeders/ApiKeysTableSeeder.php index 05b639293..5d840ad7a 100644 --- a/database/seeders/ApiKeysTableSeeder.php +++ b/database/seeders/ApiKeysTableSeeder.php @@ -6,7 +6,6 @@ class ApiKeysTableSeeder extends Seeder { - /** * Auto generated seed file * @@ -14,11 +13,8 @@ class ApiKeysTableSeeder extends Seeder */ public function run() { - \DB::table('api_keys')->delete(); - - - + } -} \ No newline at end of file +} diff --git a/database/seeders/CategoriesTableSeeder.php b/database/seeders/CategoriesTableSeeder.php index ec5269f49..805e3208f 100644 --- a/database/seeders/CategoriesTableSeeder.php +++ b/database/seeders/CategoriesTableSeeder.php @@ -6,7 +6,6 @@ class CategoriesTableSeeder extends Seeder { - /** * Auto generated seed file * @@ -14,33 +13,29 @@ class CategoriesTableSeeder extends Seeder */ public function run() { - \DB::table('categories')->delete(); - - \DB::table('categories')->insert(array ( - 0 => - array ( + + \DB::table('categories')->insert([ + 0 => [ 'id' => 1, - 'parent_id' => NULL, + 'parent_id' => null, 'order' => 1, 'name' => 'Marketing', 'slug' => 'marketing', 'created_at' => '2017-11-21 16:23:22', 'updated_at' => '2017-11-21 16:23:22', - ), - 1 => - array ( + ], + 1 => [ 'id' => 2, - 'parent_id' => NULL, + 'parent_id' => null, 'order' => 1, 'name' => 'Tutorials', 'slug' => 'tutorials', 'created_at' => '2017-11-21 16:23:22', 'updated_at' => '2017-11-21 16:23:22', - ), - )); - - + ], + ]); + } -} \ No newline at end of file +} diff --git a/database/seeders/ChangelogsTableSeeder.php b/database/seeders/ChangelogsTableSeeder.php index 009a65e14..0c0abe25d 100644 --- a/database/seeders/ChangelogsTableSeeder.php +++ b/database/seeders/ChangelogsTableSeeder.php @@ -6,7 +6,6 @@ class ChangelogsTableSeeder extends Seeder { - /** * Auto generated seed file * @@ -15,44 +14,39 @@ class ChangelogsTableSeeder extends Seeder public function run() { - \DB::table('changelogs')->delete(); - \DB::table('changelogs')->insert(array ( - 0 => - array ( + \DB::table('changelogs')->insert([ + 0 => [ 'id' => 1, 'title' => 'Wave 1.0 Released', 'description' => 'We have just released the first official version of Wave. Click here to learn more!', 'body' => '

It\'s been a fun Journey creating this awesome SAAS starter kit and we are super excited to use it in many of our future projects. There are just so many features that Wave has that will make building the SAAS of your dreams easier than ever before.

Make sure to stay up-to-date on our latest releases as we will be releasing many more features down the road :)

Thanks! Talk to you soon.

', - 'created_at' => '2018-05-20 23:19:00', - 'updated_at' => '2018-05-21 00:38:02', - ))); + 'created_at' => '2018-05-20 23:19:00', + 'updated_at' => '2018-05-21 00:38:02', + ]]); - \DB::table('changelogs')->insert(array ( - 1 => - array ( + \DB::table('changelogs')->insert([ + 1 => [ 'id' => 2, 'title' => 'Wave 2.0 Released', 'description' => 'Wave V2 has been released with some awesome new features. Be sure to read up on what\'s new!', 'body' => '

This new version of Wave includes the following updates:

  • Update to the latest version of Laravel
  • New Payment integration with Paddle
  • Rewritten theme support
  • Deployment integration
  • Much more awesomeness

Be sure to check out the official Wave v2 page at https://devdojo.com/wave

', 'created_at' => '2020-03-20 23:19:00', 'updated_at' => '2020-03-21 00:38:02', - ))); + ]]); - \DB::table('changelogs')->insert(array ( - 1 => - array ( + \DB::table('changelogs')->insert([ + 1 => [ 'id' => 3, 'title' => 'Wave 3.0 Released', 'description' => 'Version 3 has been released with some major updates. Click here to find out what\'s new!', 'body' => '

Wave V3 has some awesome and significant changes. Below is an overview of all the things that have changed.

BTW, this is the changelog where you can add/edit entries to explain to your users what\'s new in your product. Click here to change this changelog entry

In this new version of Wave we are no longer using Voyager for our admin panel. Instead we are leveraging FilamentPHP which will give us so many things out of the box like a Form Builder, Table Builder, Notifications, and so much more.

We\'re also using an Authenticaiton package that will allow you to configure your authentication in one place and have it stay the same no matter which theme you use.

We have also decided to go all-in on the Tall Stack, this means that Livewire components can be used in any theme and anywhere on the site and it will just work 👌

There are so many additional things that have been included in the latest version. Be sure to check out the Wave page here to learn more ✨

', 'created_at' => '2024-08-01 12:00:00', 'updated_at' => '2024-08-01 12:00:00', - ))); - + ]]); } } diff --git a/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php index 16beeec66..c67e745f7 100644 --- a/database/seeders/DatabaseSeeder.php +++ b/database/seeders/DatabaseSeeder.php @@ -3,7 +3,6 @@ namespace Database\Seeders; use Illuminate\Database\Seeder; -use Wave\Facades\Wave; class DatabaseSeeder extends Seeder { @@ -34,7 +33,7 @@ public function run() } } -if (!function_exists('fixPostgresSequence')) { +if (! function_exists('fixPostgresSequence')) { function fixPostgresSequence() { @@ -46,11 +45,10 @@ function fixPostgresSequence() // Only proceed if the 'id' column is numeric if (in_array($columnType, ['integer', 'bigint', 'smallint', 'smallserial', 'serial', 'bigserial'])) { $seq = \DB::table($table->table_name)->max('id') + 1; - \DB::select('SELECT setval(pg_get_serial_sequence(\'' . $table->table_name . '\', \'id\'), coalesce(' . $seq . ',1), false) FROM ' . $table->table_name); + \DB::select('SELECT setval(pg_get_serial_sequence(\''.$table->table_name.'\', \'id\'), coalesce('.$seq.',1), false) FROM '.$table->table_name); } } } } } } - diff --git a/database/seeders/ModelHasRolesTableSeeder.php b/database/seeders/ModelHasRolesTableSeeder.php index 05d3246fc..bf07c5a8e 100644 --- a/database/seeders/ModelHasRolesTableSeeder.php +++ b/database/seeders/ModelHasRolesTableSeeder.php @@ -6,7 +6,6 @@ class ModelHasRolesTableSeeder extends Seeder { - /** * Auto generated seed file * @@ -15,18 +14,15 @@ class ModelHasRolesTableSeeder extends Seeder public function run() { - \DB::table('model_has_roles')->delete(); - \DB::table('model_has_roles')->insert(array ( - 0 => - array ( + \DB::table('model_has_roles')->insert([ + 0 => [ 'role_id' => 1, 'model_type' => 'users', - 'model_id' => 1 - ), - )); - + 'model_id' => 1, + ], + ]); } } diff --git a/database/seeders/NotificationsTableSeeder.php b/database/seeders/NotificationsTableSeeder.php index f5ad14ffe..c15ad33a9 100644 --- a/database/seeders/NotificationsTableSeeder.php +++ b/database/seeders/NotificationsTableSeeder.php @@ -6,7 +6,6 @@ class NotificationsTableSeeder extends Seeder { - /** * Auto generated seed file * @@ -14,11 +13,8 @@ class NotificationsTableSeeder extends Seeder */ public function run() { - \DB::table('notifications')->delete(); - - - + } -} \ No newline at end of file +} diff --git a/database/seeders/PagesTableSeeder.php b/database/seeders/PagesTableSeeder.php index c7aaf6b01..204989188 100644 --- a/database/seeders/PagesTableSeeder.php +++ b/database/seeders/PagesTableSeeder.php @@ -6,7 +6,6 @@ class PagesTableSeeder extends Seeder { - /** * Auto generated seed file * @@ -14,43 +13,39 @@ class PagesTableSeeder extends Seeder */ public function run() { - \DB::table('pages')->delete(); - - \DB::table('pages')->insert(array ( - 0 => - array ( + + \DB::table('pages')->insert([ + 0 => [ 'id' => 1, 'author_id' => 1, 'title' => 'Example Page', 'excerpt' => 'This is an example page. Create a page in the Wave admin and have it show up on the site.', 'body' => '

This is an example page to showcase how a simple page can be created. You\'ll notice that this page also routes to a URL on your website. In this case the URL is mapped to `/example-page`. You can create as many pages as you would like.

Creating Pages

To create a new page you can simply visit the admin section at `/admin/pages`. You can then create a new page and add content. Here are some advantages of creating the page inside the admin.

  • Automatically routes to a URL
  • Simple to create new pages
  • Simple to edit page
  • Many more

You can feel free to create a page via the admin or you can create the page by adding it to your themes pages directory. The choice is yours.

Quick Warning

If you create a page inside the admin that has a slug of `about` and then you create a page inside your theme directory at `/pages/about/index.blade.php`. The two pages will conflict and you\'ll only see it from your themes page directory. Just make sure you only create the page in one location.

', - 'image' => NULL, + 'image' => null, 'slug' => 'example-page', 'meta_description' => 'This is a simple meta description for SEO purposes', 'meta_keywords' => 'keyword1, keyword2', 'status' => 'ACTIVE', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 1 => - array ( + ], + 1 => [ 'id' => 2, 'author_id' => 1, 'title' => 'About', 'excerpt' => 'Learn more about Wave. This is an example about page.', 'body' => '

Wave is an all-in-one Software as a Service (SaaS) starter kit designed to give developers a head start in building their next big idea. Packed with essential features, Wave provides a smooth and powerful development experience, helping you skip the repetitive tasks and focus on what really matters: your unique application.

Why Choose Wave?

Wave offers an extensive toolkit to transform your application from an idea to a fully-fledged SaaS product. With Wave, developers can:

  • Jumpstart their SaaS application: Begin with built-in features like user management, authentication, and billing, so you don\'t have to reinvent the wheel.
  • Fully customize: Tailor every aspect of your app, from themes to user roles, to match your brand\'s needs.
  • Enjoy modern design: Wave is built using the TALL stack (Tailwind, Alpine, Laravel, Livewire), offering a sleek and responsive interface.
  • Deploy with ease: Equipped with powerful tools, Wave simplifies the deployment process to get your application up and running quickly.


Packed with Powerful Features

Wave isn\'t just a framework; it\'s a complete package that includes everything you need to launch a subscription-based application. Some of its standout features are:

  • User Management: Built-in user registration, authentication, and profile management, all customizable to fit your app\'s requirements.
  • Subscription Billing: Integrated with Stripe and Paddle, Wave makes it easy to manage subscriptions, handle payments, and create invoices.
  • Themes and Templates: Choose from beautifully designed themes, or create your own. Easily switch between themes using Wave\'s built-in theming engine.
  • Admin Interface: Powered by FilamentPHP, Wave includes a robust admin panel to manage users, roles, and app settings efficiently.


Start Building with Wave Today

Wave is more than just a SaaS starter kit; it\'s a robust platform designed to handle your application\'s future growth. Whether you\'re building an MVP, launching a new SaaS product, or scaling your existing platform, Wave equips you with the tools and flexibility to succeed.

Key Benefits Recap

  • Save Time: Skip the groundwork and start building right away with Wave\'s ready-to-use features.
  • Scale with Confidence: Wave\'s modularity and customization options make it easy to evolve as your business grows.
  • Optimized for Developers: Enjoy a developer-friendly experience with modern tools and a straightforward workflow.

Ready to take your next SaaS project to the next level? Let Wave be your guide.

This structure provides a comprehensive overview of Wave while highlighting its key features and benefits. Feel free to tweak or expand on any sections to suit your needs!

', - 'image' => NULL, + 'image' => null, 'slug' => 'about', 'meta_description' => 'About Wave', 'meta_keywords' => 'about, wave', 'status' => 'ACTIVE', 'created_at' => '2018-03-30 03:04:51', 'updated_at' => '2018-03-30 03:04:51', - ), - )); - - + ], + ]); + } -} \ No newline at end of file +} diff --git a/database/seeders/PasswordResetsTableSeeder.php b/database/seeders/PasswordResetsTableSeeder.php index 62d0bbbf0..92ebe6ba5 100644 --- a/database/seeders/PasswordResetsTableSeeder.php +++ b/database/seeders/PasswordResetsTableSeeder.php @@ -6,7 +6,6 @@ class PasswordResetsTableSeeder extends Seeder { - /** * Auto generated seed file * @@ -14,11 +13,8 @@ class PasswordResetsTableSeeder extends Seeder */ public function run() { - \DB::table('password_resets')->delete(); - - - + } -} \ No newline at end of file +} diff --git a/database/seeders/PermissionRoleTableSeeder.php b/database/seeders/PermissionRoleTableSeeder.php index 38bed341e..6a3cdcada 100644 --- a/database/seeders/PermissionRoleTableSeeder.php +++ b/database/seeders/PermissionRoleTableSeeder.php @@ -6,7 +6,6 @@ class PermissionRoleTableSeeder extends Seeder { - /** * Auto generated seed file * @@ -16,4 +15,4 @@ public function run() { \DB::table('role_has_permissions')->delete(); } -} \ No newline at end of file +} diff --git a/database/seeders/PermissionsTableSeeder.php b/database/seeders/PermissionsTableSeeder.php index 910a4a070..a4f3e9fa7 100644 --- a/database/seeders/PermissionsTableSeeder.php +++ b/database/seeders/PermissionsTableSeeder.php @@ -6,7 +6,6 @@ class PermissionsTableSeeder extends Seeder { - /** * Auto generated seed file * @@ -16,4 +15,4 @@ public function run() { \DB::table('permissions')->delete(); } -} \ No newline at end of file +} diff --git a/database/seeders/PlansTableSeeder.php b/database/seeders/PlansTableSeeder.php index 1a138f38d..b8aab570f 100644 --- a/database/seeders/PlansTableSeeder.php +++ b/database/seeders/PlansTableSeeder.php @@ -6,7 +6,6 @@ class PlansTableSeeder extends Seeder { - /** * Auto generated seed file * @@ -15,12 +14,10 @@ class PlansTableSeeder extends Seeder public function run() { - \DB::table('plans')->delete(); - \DB::table('plans')->insert(array ( - 0 => - array ( + \DB::table('plans')->insert([ + 0 => [ 'id' => 1, 'name' => 'Basic', 'description' => 'Signup for the Basic User Plan to access all the basic features.', @@ -31,9 +28,8 @@ public function run() 'yearly_price' => '50', 'created_at' => '2018-07-03 05:03:56', 'updated_at' => '2018-07-03 17:17:24', - ), - 1 => - array ( + ], + 1 => [ 'id' => 2, 'name' => 'Premium', 'description' => 'Signup for our premium plan to access all our Premium Features.', @@ -44,9 +40,8 @@ public function run() 'yearly_price' => '80', 'created_at' => '2018-07-03 16:29:46', 'updated_at' => '2018-07-03 17:17:08', - ), - 2 => - array ( + ], + 2 => [ 'id' => 3, 'name' => 'Pro', 'description' => 'Gain access to our pro features with the pro plan.', @@ -57,9 +52,8 @@ public function run() 'yearly_price' => '120', 'created_at' => '2018-07-03 16:30:43', 'updated_at' => '2018-08-22 22:26:19', - ), - )); - + ], + ]); } } diff --git a/database/seeders/PostsTableSeeder.php b/database/seeders/PostsTableSeeder.php index 31cb59baf..e30854465 100644 --- a/database/seeders/PostsTableSeeder.php +++ b/database/seeders/PostsTableSeeder.php @@ -6,7 +6,6 @@ class PostsTableSeeder extends Seeder { - /** * Auto generated seed file * @@ -15,18 +14,16 @@ class PostsTableSeeder extends Seeder public function run() { - \DB::table('posts')->delete(); - \DB::table('posts')->insert(array ( - 0 => - array ( + \DB::table('posts')->insert([ + 0 => [ 'id' => 5, 'author_id' => 1, 'category_id' => 1, 'title' => 'Best ways to market your application', 'seo_title' => 'Best ways to market your application', - 'excerpt' => NULL, + 'excerpt' => null, 'body' => '

There are many different ways to market your application. First, let\'s start off at the beginning and then we will get more in-depth. You\'ll want to discover your target audience and after that, you\'ll want to run some ads.

Let\'s not complicate things here, if you build a good product, you are going to have users. But you will need to let your users know where to find you. This is where social media and ads come in to play. You\'ll need to boast about your product and your app. If it\'s something that you really believe in, the odds are others will too.

@@ -54,15 +51,14 @@ public function run() 'featured' => 0, 'created_at' => '2018-03-26 02:55:01', 'updated_at' => '2018-03-26 02:13:05', - ), - 1 => - array ( + ], + 1 => [ 'id' => 6, 'author_id' => 1, 'category_id' => 1, 'title' => 'Achieving your Dreams', 'seo_title' => 'Achieving your Dreams', - 'excerpt' => NULL, + 'excerpt' => null, 'body' => '

What can be said about achieving your dreams?
Well... It\'s a good thing, and it\'s probably something you\'re dreaming of. Oh yeah, when you create an app and a product that you enjoy working on... You\'ll be pretty happy and your dreams will probably come true. Cool, right?

I hope that you are ready for some cool stuff because there is some cool stuff right around the corner. By the time you\'ve reached the sky, you\'ll realize your true limits. That last sentence there... That was a little bit of jibberish, but I\'m trying to write about something cool. Bottom line is that Wave is going to help save you so much time.

@@ -90,15 +86,14 @@ public function run() 'featured' => 0, 'created_at' => '2018-03-26 02:50:18', 'updated_at' => '2018-03-26 02:15:18', - ), - 2 => - array ( + ], + 2 => [ 'id' => 7, 'author_id' => 1, 'category_id' => 1, 'title' => 'Building a solid foundation', 'seo_title' => 'Building a solid foundation', - 'excerpt' => NULL, + 'excerpt' => null, 'body' => '

The foundation is one of the most important aspects. You\'ll want to make sure that you build your application on a solid foundation because this is where every other feature will grow on top of.

If the foundation is unstable the rest of the application will be so as well. But a solid foundation will make mediocre features seem amazing. So, if you want to save yourself some time you will build your application on a solid foundation of cool features, awesome jumps, and killer waves... I don\'t know what this paragraph is about anymore.

@@ -126,15 +121,14 @@ public function run() 'featured' => 0, 'created_at' => '2018-03-26 02:24:43', 'updated_at' => '2018-03-26 02:24:43', - ), - 3 => - array ( + ], + 3 => [ 'id' => 8, 'author_id' => 1, 'category_id' => 2, 'title' => 'Finding the solution that fits for you', 'seo_title' => 'Finding the solution that fits for you', - 'excerpt' => NULL, + 'excerpt' => null, 'body' => '

There is a fit for each person. Depending on the service you may want to focus on what each person needs. When you find this you\'ll be able to segregate your application to fit each person\'s needs.

This is really just an example post. I could write some stuff about how this and that, but it would probably only be information about this and that. Who am I kidding? This really isn\'t going to make some sense, but thanks for still reading. Are you still reading this article? That\'s awesome. Thanks for being interested.

@@ -162,15 +156,14 @@ public function run() 'featured' => 0, 'created_at' => '2018-03-26 02:42:44', 'updated_at' => '2018-03-26 02:42:44', - ), - 4 => - array ( + ], + 4 => [ 'id' => 9, 'author_id' => 1, 'category_id' => 2, 'title' => 'Creating something useful', 'seo_title' => 'Creating something useful', - 'excerpt' => NULL, + 'excerpt' => null, 'body' => '

It\'s not enough nowadays to create something you want, instead you\'ll need to focus on what people need. If you find a need for something that isn\'t available... You should create it. Odds are someone will find it useful as well.

When you focus your energy on building something that you are passionate about it\'s going to show. Your customers will buy because it\'s a great application, but also because they believe in what you are trying to achieve. So, continue to focus on making something that people need and find useful.

@@ -198,15 +191,14 @@ public function run() 'featured' => 0, 'created_at' => '2018-03-26 02:49:37', 'updated_at' => '2018-03-26 02:56:38', - ), - 5 => - array ( + ], + 5 => [ 'id' => 10, 'author_id' => 1, 'category_id' => 1, 'title' => 'Never Stop Creating', 'seo_title' => 'Never Stop Creating', - 'excerpt' => NULL, + 'excerpt' => null, 'body' => '

The reason why we are the way we are is... Because we are designed for a purpose. Some people are created to help or service, and others are created to... Well... Create. Are you a creator.

If you have a passion for creating new things and bringing ideas to life. You\'ll want to save yourself some time by using Wave to build the foundation. Wave has so many built-in features including Billing, User Profiles, User Settings, an API, and so much more.

@@ -234,9 +226,8 @@ public function run() 'featured' => 0, 'created_at' => '2018-03-26 02:08:02', 'updated_at' => '2018-06-28 06:14:31', - ), - )); - + ], + ]); } -} \ No newline at end of file +} diff --git a/database/seeders/ProfileKeyValuesTableSeeder.php b/database/seeders/ProfileKeyValuesTableSeeder.php index a3e6788a4..f326665a2 100644 --- a/database/seeders/ProfileKeyValuesTableSeeder.php +++ b/database/seeders/ProfileKeyValuesTableSeeder.php @@ -6,7 +6,6 @@ class ProfileKeyValuesTableSeeder extends Seeder { - /** * Auto generated seed file * @@ -15,21 +14,18 @@ class ProfileKeyValuesTableSeeder extends Seeder public function run() { - \DB::table('profile_key_values')->delete(); - \DB::table('profile_key_values')->insert(array ( - 0 => - array ( + \DB::table('profile_key_values')->insert([ + 0 => [ 'id' => 10, 'type' => 'text_area', 'keyvalue_id' => 1, 'keyvalue_type' => 'users', 'key' => 'about', 'value' => 'Hello I am the admin user. You can update this information in the edit profile section. Hope you enjoy using Wave.', - ), - )); - + ], + ]); } } diff --git a/database/seeders/RolesTableSeeder.php b/database/seeders/RolesTableSeeder.php index 310d9b4ea..3ce158b05 100644 --- a/database/seeders/RolesTableSeeder.php +++ b/database/seeders/RolesTableSeeder.php @@ -6,7 +6,6 @@ class RolesTableSeeder extends Seeder { - /** * Auto generated seed file * @@ -15,57 +14,50 @@ class RolesTableSeeder extends Seeder public function run() { - \DB::table('roles')->delete(); - \DB::table('roles')->insert(array ( - 0 => - array ( + \DB::table('roles')->insert([ + 0 => [ 'id' => 1, 'guard_name' => 'web', 'name' => 'admin', 'description' => 'The admin user has full access to all features including the ability to access the admin panel.', 'created_at' => '2017-11-21 16:23:22', 'updated_at' => '2017-11-21 16:23:22', - ), - 1 => - array ( + ], + 1 => [ 'id' => 2, 'guard_name' => 'web', 'name' => 'registered', 'description' => 'This is the default user role. If a user has this role they have created an account; however, they have are not a subscriber.', 'created_at' => '2017-11-21 16:23:22', 'updated_at' => '2017-11-21 16:23:22', - ), - 2 => - array ( + ], + 2 => [ 'id' => 3, 'guard_name' => 'web', 'name' => 'basic', 'description' => 'This is the basic plan role. This role is usually associated with a user who has subscribed to the basic plan.', 'created_at' => '2017-11-21 16:23:22', 'updated_at' => '2017-11-21 16:23:22', - ), - 3 => - array ( + ], + 3 => [ 'id' => 4, 'guard_name' => 'web', 'name' => 'premium', 'description' => 'This is the premium plan role. This role is usually associated with a user who has subscribed to the premium plan.', 'created_at' => '2018-07-03 05:03:21', 'updated_at' => '2018-07-03 17:28:44', - ), - 4 => - array ( + ], + 4 => [ 'id' => 5, 'guard_name' => 'web', 'name' => 'pro', 'description' => 'This is the pro plan role. This role is usually associated with a user who has subscribed to the pro plan.', 'created_at' => '2018-07-03 16:27:16', 'updated_at' => '2018-07-03 17:28:38', - ) - )); - + ], + ]); } } diff --git a/database/seeders/SettingsTableSeeder.php b/database/seeders/SettingsTableSeeder.php index c1bc4b018..304423ab7 100644 --- a/database/seeders/SettingsTableSeeder.php +++ b/database/seeders/SettingsTableSeeder.php @@ -6,7 +6,6 @@ class SettingsTableSeeder extends Seeder { - /** * Auto generated seed file * @@ -15,12 +14,10 @@ class SettingsTableSeeder extends Seeder public function run() { - \DB::table('settings')->delete(); - \DB::table('settings')->insert(array ( - 0 => - array ( + \DB::table('settings')->insert([ + 0 => [ 'id' => 1, 'key' => 'site.title', 'display_name' => 'Site Title', @@ -29,9 +26,8 @@ public function run() 'type' => 'text', 'order' => 1, 'group' => 'Site', - ), - 1 => - array ( + ], + 1 => [ 'id' => 2, 'key' => 'site.description', 'display_name' => 'Site Description', @@ -40,20 +36,18 @@ public function run() 'type' => 'text', 'order' => 2, 'group' => 'Site', - ), - 2 => - array ( + ], + 2 => [ 'id' => 4, 'key' => 'site.google_analytics_tracking_id', 'display_name' => 'Google Analytics Tracking ID', - 'value' => NULL, + 'value' => null, 'details' => '', 'type' => 'text', 'order' => 4, 'group' => 'Site', - ) - )); - + ], + ]); } } diff --git a/database/seeders/ThemesTableSeeder.php b/database/seeders/ThemesTableSeeder.php index 0c259fc14..b7d54861b 100644 --- a/database/seeders/ThemesTableSeeder.php +++ b/database/seeders/ThemesTableSeeder.php @@ -6,7 +6,6 @@ class ThemesTableSeeder extends Seeder { - /** * Auto generated seed file * @@ -14,21 +13,18 @@ class ThemesTableSeeder extends Seeder */ public function run() { - \DB::table('themes')->delete(); - - \DB::table('themes')->insert(array ( - 0 => - array ( + + \DB::table('themes')->insert([ + 0 => [ 'id' => 1, 'name' => 'Anchor Theme', 'folder' => 'anchor', 'active' => 1, - 'version' => 1.0 - ) - )); - - + 'version' => 1.0, + ], + ]); + } -} \ No newline at end of file +} diff --git a/database/seeders/TranslationsTableSeeder.php b/database/seeders/TranslationsTableSeeder.php index c5d39765f..66186e545 100644 --- a/database/seeders/TranslationsTableSeeder.php +++ b/database/seeders/TranslationsTableSeeder.php @@ -6,7 +6,6 @@ class TranslationsTableSeeder extends Seeder { - /** * Auto generated seed file * @@ -14,13 +13,11 @@ class TranslationsTableSeeder extends Seeder */ public function run() { - \DB::table('translations')->delete(); - - \DB::table('translations')->insert(array ( - 0 => - array ( + + \DB::table('translations')->insert([ + 0 => [ 'id' => 1, 'table_name' => 'data_types', 'column_name' => 'display_name_singular', @@ -29,9 +26,8 @@ public function run() 'value' => 'Post', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 1 => - array ( + ], + 1 => [ 'id' => 2, 'table_name' => 'data_types', 'column_name' => 'display_name_singular', @@ -40,9 +36,8 @@ public function run() 'value' => 'Página', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 2 => - array ( + ], + 2 => [ 'id' => 3, 'table_name' => 'data_types', 'column_name' => 'display_name_singular', @@ -51,9 +46,8 @@ public function run() 'value' => 'Utilizador', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 3 => - array ( + ], + 3 => [ 'id' => 4, 'table_name' => 'data_types', 'column_name' => 'display_name_singular', @@ -62,9 +56,8 @@ public function run() 'value' => 'Categoria', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 4 => - array ( + ], + 4 => [ 'id' => 5, 'table_name' => 'data_types', 'column_name' => 'display_name_singular', @@ -73,9 +66,8 @@ public function run() 'value' => 'Menu', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 5 => - array ( + ], + 5 => [ 'id' => 6, 'table_name' => 'data_types', 'column_name' => 'display_name_singular', @@ -84,9 +76,8 @@ public function run() 'value' => 'Função', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 6 => - array ( + ], + 6 => [ 'id' => 7, 'table_name' => 'data_types', 'column_name' => 'display_name_plural', @@ -95,9 +86,8 @@ public function run() 'value' => 'Posts', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 7 => - array ( + ], + 7 => [ 'id' => 8, 'table_name' => 'data_types', 'column_name' => 'display_name_plural', @@ -106,9 +96,8 @@ public function run() 'value' => 'Páginas', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 8 => - array ( + ], + 8 => [ 'id' => 9, 'table_name' => 'data_types', 'column_name' => 'display_name_plural', @@ -117,9 +106,8 @@ public function run() 'value' => 'Utilizadores', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 9 => - array ( + ], + 9 => [ 'id' => 10, 'table_name' => 'data_types', 'column_name' => 'display_name_plural', @@ -128,9 +116,8 @@ public function run() 'value' => 'Categorias', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 10 => - array ( + ], + 10 => [ 'id' => 11, 'table_name' => 'data_types', 'column_name' => 'display_name_plural', @@ -139,9 +126,8 @@ public function run() 'value' => 'Menus', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 11 => - array ( + ], + 11 => [ 'id' => 12, 'table_name' => 'data_types', 'column_name' => 'display_name_plural', @@ -150,9 +136,8 @@ public function run() 'value' => 'Funções', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 12 => - array ( + ], + 12 => [ 'id' => 13, 'table_name' => 'categories', 'column_name' => 'slug', @@ -161,9 +146,8 @@ public function run() 'value' => 'categoria-1', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 13 => - array ( + ], + 13 => [ 'id' => 14, 'table_name' => 'categories', 'column_name' => 'name', @@ -172,9 +156,8 @@ public function run() 'value' => 'Categoria 1', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 14 => - array ( + ], + 14 => [ 'id' => 15, 'table_name' => 'categories', 'column_name' => 'slug', @@ -183,9 +166,8 @@ public function run() 'value' => 'categoria-2', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 15 => - array ( + ], + 15 => [ 'id' => 16, 'table_name' => 'categories', 'column_name' => 'name', @@ -194,9 +176,8 @@ public function run() 'value' => 'Categoria 2', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 16 => - array ( + ], + 16 => [ 'id' => 17, 'table_name' => 'pages', 'column_name' => 'title', @@ -205,9 +186,8 @@ public function run() 'value' => 'Olá Mundo', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 17 => - array ( + ], + 17 => [ 'id' => 18, 'table_name' => 'pages', 'column_name' => 'slug', @@ -216,9 +196,8 @@ public function run() 'value' => 'ola-mundo', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 18 => - array ( + ], + 18 => [ 'id' => 19, 'table_name' => 'pages', 'column_name' => 'body', @@ -228,9 +207,8 @@ public function run()

Ballast spirits fluke topmast me quarterdeck schooner landlubber or just lubber gabion belaying pin. Pinnace stern galleon starboard warp carouser to go on account dance the hempen jig jolly boat measured fer yer chains. Man-of-war fire in the hole nipperkin handsomely doubloon barkadeer Brethren of the Coast gibbet driver squiffy.

', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 19 => - array ( + ], + 19 => [ 'id' => 20, 'table_name' => 'menu_items', 'column_name' => 'title', @@ -239,9 +217,8 @@ public function run() 'value' => 'Painel de Controle', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 20 => - array ( + ], + 20 => [ 'id' => 21, 'table_name' => 'menu_items', 'column_name' => 'title', @@ -250,9 +227,8 @@ public function run() 'value' => 'Media', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 21 => - array ( + ], + 21 => [ 'id' => 22, 'table_name' => 'menu_items', 'column_name' => 'title', @@ -261,9 +237,8 @@ public function run() 'value' => 'Publicações', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 22 => - array ( + ], + 22 => [ 'id' => 23, 'table_name' => 'menu_items', 'column_name' => 'title', @@ -272,9 +247,8 @@ public function run() 'value' => 'Utilizadores', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 23 => - array ( + ], + 23 => [ 'id' => 24, 'table_name' => 'menu_items', 'column_name' => 'title', @@ -283,9 +257,8 @@ public function run() 'value' => 'Categorias', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 24 => - array ( + ], + 24 => [ 'id' => 25, 'table_name' => 'menu_items', 'column_name' => 'title', @@ -294,9 +267,8 @@ public function run() 'value' => 'Páginas', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 25 => - array ( + ], + 25 => [ 'id' => 26, 'table_name' => 'menu_items', 'column_name' => 'title', @@ -305,9 +277,8 @@ public function run() 'value' => 'Funções', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 26 => - array ( + ], + 26 => [ 'id' => 27, 'table_name' => 'menu_items', 'column_name' => 'title', @@ -316,9 +287,8 @@ public function run() 'value' => 'Ferramentas', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 27 => - array ( + ], + 27 => [ 'id' => 28, 'table_name' => 'menu_items', 'column_name' => 'title', @@ -327,9 +297,8 @@ public function run() 'value' => 'Menus', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 28 => - array ( + ], + 28 => [ 'id' => 29, 'table_name' => 'menu_items', 'column_name' => 'title', @@ -338,9 +307,8 @@ public function run() 'value' => 'Base de dados', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - 29 => - array ( + ], + 29 => [ 'id' => 30, 'table_name' => 'menu_items', 'column_name' => 'title', @@ -349,9 +317,8 @@ public function run() 'value' => 'Configurações', 'created_at' => '2017-11-21 16:23:23', 'updated_at' => '2017-11-21 16:23:23', - ), - )); - - + ], + ]); + } -} \ No newline at end of file +} diff --git a/database/seeders/UsersTableSeeder.php b/database/seeders/UsersTableSeeder.php index 122038f2e..39fa44f34 100644 --- a/database/seeders/UsersTableSeeder.php +++ b/database/seeders/UsersTableSeeder.php @@ -6,7 +6,6 @@ class UsersTableSeeder extends Seeder { - /** * Auto generated seed file * @@ -14,13 +13,11 @@ class UsersTableSeeder extends Seeder */ public function run() { - \DB::table('users')->delete(); - - \DB::table('users')->insert(array ( - 0 => - array ( + + \DB::table('users')->insert([ + 0 => [ 'id' => 1, 'name' => 'Wave Admin', 'email' => 'admin@admin.com', @@ -30,12 +27,11 @@ public function run() 'remember_token' => '4oXDVo48Lm1pc4j7NkWI9cMO4hv5OIEJFMrqjSCKQsIwWMGRFYDvNpdioBfo', 'created_at' => '2017-11-21 16:07:22', 'updated_at' => '2018-09-22 23:34:02', - 'trial_ends_at' => NULL, - 'verification_code' => NULL, + 'trial_ends_at' => null, + 'verification_code' => null, 'verified' => 1, - ), - )); - - + ], + ]); + } -} \ No newline at end of file +} diff --git a/database/seeders/VoyagerThemeOptionsTableSeeder.php b/database/seeders/VoyagerThemeOptionsTableSeeder.php index 824b5f33b..f9e4c0d74 100644 --- a/database/seeders/VoyagerThemeOptionsTableSeeder.php +++ b/database/seeders/VoyagerThemeOptionsTableSeeder.php @@ -6,7 +6,6 @@ class VoyagerThemeOptionsTableSeeder extends Seeder { - /** * Auto generated seed file * @@ -15,84 +14,74 @@ class VoyagerThemeOptionsTableSeeder extends Seeder public function run() { - \DB::table('theme_options')->delete(); - \DB::table('theme_options')->insert(array ( - 0 => - array ( + \DB::table('theme_options')->insert([ + 0 => [ 'id' => 17, 'theme_id' => 1, 'key' => 'logo', 'value' => '', 'created_at' => '2017-11-22 16:54:46', - 'updated_at' => '2018-02-11 05:02:40' - ), - 1 => - array( + 'updated_at' => '2018-02-11 05:02:40', + ], + 1 => [ 'id' => 18, 'theme_id' => 1, 'key' => 'home_headline', 'value' => 'Welcome to Wave', 'created_at' => '2017-11-25 17:31:45', - 'updated_at' => '2018-08-28 00:17:41' - ), - 2 => - array( + 'updated_at' => '2018-08-28 00:17:41', + ], + 2 => [ 'id' => 19, 'theme_id' => 1, 'key' => 'home_subheadline', 'value' => 'Start crafting your next great idea.', 'created_at' => '2017-11-25 17:31:45', - 'updated_at' => '2017-11-26 07:11:47' - ), - 3 => - array( + 'updated_at' => '2017-11-26 07:11:47', + ], + 3 => [ 'id' => 20, 'theme_id' => 1, 'key' => 'home_description', 'value' => 'Wave will help you rapidly build a Software as a Service. Out of the box Authentication, Subscriptions, Invoices, Announcements, User Profiles, API, and so much more!', 'created_at' => '2017-11-25 17:31:45', - 'updated_at' => '2017-11-26 07:09:50' - ), - 4 => - array( + 'updated_at' => '2017-11-26 07:09:50', + ], + 4 => [ 'id' => 21, 'theme_id' => 1, 'key' => 'home_cta', 'value' => 'Signup', 'created_at' => '2017-11-25 20:02:29', - 'updated_at' => '2020-10-23 20:17:25' - ), - 5 => - array( + 'updated_at' => '2020-10-23 20:17:25', + ], + 5 => [ 'id' => 22, 'theme_id' => 1, 'key' => 'home_cta_url', 'value' => '/register', 'created_at' => '2017-11-25 20:09:33', - 'updated_at' => '2017-11-26 16:12:41' - ), - 6 => - array( + 'updated_at' => '2017-11-26 16:12:41', + ], + 6 => [ 'id' => 23, 'theme_id' => 1, 'key' => 'home_promo_image', 'value' => 'themes/February2018/mFajn4fwpGFXzI1UsNH6.png', 'created_at' => '2017-11-25 21:36:46', - 'updated_at' => '2017-11-29 01:17:00' - ), - 7 => - array( + 'updated_at' => '2017-11-29 01:17:00', + ], + 7 => [ 'id' => 24, 'theme_id' => 1, 'key' => 'footer_logo', 'value' => 'themes/August2018/TksmVWMqp5JXUQj8C6Ct.png', 'created_at' => '2018-08-28 23:12:11', - 'updated_at' => '2018-08-28 23:12:11' - ) - )); - + 'updated_at' => '2018-08-28 23:12:11', + ], + ]); } } diff --git a/database/seeders/VoyagerThemesTableSeeder.php b/database/seeders/VoyagerThemesTableSeeder.php index e0cb76bfe..0a9285278 100644 --- a/database/seeders/VoyagerThemesTableSeeder.php +++ b/database/seeders/VoyagerThemesTableSeeder.php @@ -6,7 +6,6 @@ class VoyagerThemesTableSeeder extends Seeder { - /** * Auto generated seed file * @@ -15,12 +14,10 @@ class VoyagerThemesTableSeeder extends Seeder public function run() { - \DB::table('themes')->delete(); - \DB::table('themes')->insert(array ( - 0 => - array ( + \DB::table('themes')->insert([ + 0 => [ 'id' => 1, 'name' => 'Tailwind Theme', 'folder' => 'tailwind', @@ -28,9 +25,8 @@ public function run() 'version' => '1.0', 'created_at' => '2020-08-23 08:06:45', 'updated_at' => '2020-08-23 08:06:45', - ) - )); - + ], + ]); } } diff --git a/lang/al/voyager.php b/lang/al/voyager.php index ce7444aff..d4aa98325 100644 --- a/lang/al/voyager.php +++ b/lang/al/voyager.php @@ -9,147 +9,147 @@ ], 'generic' => [ - 'action' => 'Veprimi', - 'actions' => 'Veprimet', - 'add' => 'Shto', - 'add_folder' => 'Shto Dosje', - 'add_new' => 'Shto të ri', - 'all_done' => 'Të gjitha të kryera', - 'are_you_sure' => 'Jeni i sigurt', - 'are_you_sure_delete' => 'Jeni i sigurt që doni të fshini', - 'auto_increment' => 'Rritja automatike', - 'browse' => 'Shfleto', - 'builder' => 'Ndërtues', - 'bulk_delete' => 'Largo bulk', - 'bulk_delete_confirm' => 'Po, fshini këto', - 'bulk_delete_nothing' => 'Ju nuk keni zgjedhur ndonjë gjë për të fshirë', - 'cancel' => 'Anulo', - 'choose_type' => 'Zgjidhni Lloji', - 'click_here' => 'Kliko këtu', - 'close' => 'Mbyll', - 'compass' => 'Kompasë', - 'created_at' => 'Krijuar në', - 'custom' => 'Custom', - 'dashboard' => 'Dashboard', - 'database' => 'Baza e të dhënave', - 'default' => 'Default', - 'delete' => 'Fshije', - 'delete_confirm' => 'Po, fshij atë!', - 'delete_question' => 'Jeni i sigurt që dëshironi të fshini këtë', - 'delete_this_confirm' => 'Po, fshij këtë', - 'deselect_all' => 'Deselect All', - 'download' => 'Shkarko', - 'edit' => 'Edit', - 'email' => 'E-mail', - 'error_deleting' => 'Më vjen keq që duket se ka pasur një problem duke fshirë këtë', - 'exception' => 'Përjashtim', - 'featured' => 'Të zgjedhura', + 'action' => 'Veprimi', + 'actions' => 'Veprimet', + 'add' => 'Shto', + 'add_folder' => 'Shto Dosje', + 'add_new' => 'Shto të ri', + 'all_done' => 'Të gjitha të kryera', + 'are_you_sure' => 'Jeni i sigurt', + 'are_you_sure_delete' => 'Jeni i sigurt që doni të fshini', + 'auto_increment' => 'Rritja automatike', + 'browse' => 'Shfleto', + 'builder' => 'Ndërtues', + 'bulk_delete' => 'Largo bulk', + 'bulk_delete_confirm' => 'Po, fshini këto', + 'bulk_delete_nothing' => 'Ju nuk keni zgjedhur ndonjë gjë për të fshirë', + 'cancel' => 'Anulo', + 'choose_type' => 'Zgjidhni Lloji', + 'click_here' => 'Kliko këtu', + 'close' => 'Mbyll', + 'compass' => 'Kompasë', + 'created_at' => 'Krijuar në', + 'custom' => 'Custom', + 'dashboard' => 'Dashboard', + 'database' => 'Baza e të dhënave', + 'default' => 'Default', + 'delete' => 'Fshije', + 'delete_confirm' => 'Po, fshij atë!', + 'delete_question' => 'Jeni i sigurt që dëshironi të fshini këtë', + 'delete_this_confirm' => 'Po, fshij këtë', + 'deselect_all' => 'Deselect All', + 'download' => 'Shkarko', + 'edit' => 'Edit', + 'email' => 'E-mail', + 'error_deleting' => 'Më vjen keq që duket se ka pasur një problem duke fshirë këtë', + 'exception' => 'Përjashtim', + 'featured' => 'Të zgjedhura', 'field_does_not_exist' => 'Fusha nuk ekziston', - 'how_to_use' => 'Si të përdorni', - 'index' => 'Indeksi', - 'internal_error' => 'Gabim i brendshëm', - 'items' => 'artikull (et)', - 'keep_sidebar_open' => 'Yarr! Hidhni ankorat! (dhe mbani sidebar hapur) ', - 'key' => 'Çelësi', - 'last_modified' => 'Modifikuar e fundit', - 'length' => 'Gjatësia', - 'login' => 'Login', - 'media' => 'Media', - 'menu_builder' => 'Ndërtuesi i menysë', - 'move' => 'Leviz', - 'name' => 'Emri', - 'new' => 'New', - 'no' => 'Jo', - 'no_thanks' => 'Jo faleminderit', - 'not_null' => 'Jo Null', - 'options' => 'Opsionet', - 'password' => 'Fjalëkalimi', - 'permissions' => 'Lejet', - 'profile' => 'Profili', - 'public_url' => 'URL publik', - 'read' => 'Lexo', - 'rename' => 'Riemërtoj', - 'required' => 'Required', - 'return_to_list' => 'Kthehu në listë', - 'route' => 'Rruga', - 'save' => 'Ruaj', - 'search' => 'Kërko', - 'select_all' => 'Zgjidh të gjitha', - 'select_group' => 'Zgjidh grupin ekzistues ose Shto të ri', - 'settings' => 'Cilësimet', - 'showing_entries' => 'Duke treguar: nga në: të: të gjitha entrie | ' + 'how_to_use' => 'Si të përdorni', + 'index' => 'Indeksi', + 'internal_error' => 'Gabim i brendshëm', + 'items' => 'artikull (et)', + 'keep_sidebar_open' => 'Yarr! Hidhni ankorat! (dhe mbani sidebar hapur) ', + 'key' => 'Çelësi', + 'last_modified' => 'Modifikuar e fundit', + 'length' => 'Gjatësia', + 'login' => 'Login', + 'media' => 'Media', + 'menu_builder' => 'Ndërtuesi i menysë', + 'move' => 'Leviz', + 'name' => 'Emri', + 'new' => 'New', + 'no' => 'Jo', + 'no_thanks' => 'Jo faleminderit', + 'not_null' => 'Jo Null', + 'options' => 'Opsionet', + 'password' => 'Fjalëkalimi', + 'permissions' => 'Lejet', + 'profile' => 'Profili', + 'public_url' => 'URL publik', + 'read' => 'Lexo', + 'rename' => 'Riemërtoj', + 'required' => 'Required', + 'return_to_list' => 'Kthehu në listë', + 'route' => 'Rruga', + 'save' => 'Ruaj', + 'search' => 'Kërko', + 'select_all' => 'Zgjidh të gjitha', + 'select_group' => 'Zgjidh grupin ekzistues ose Shto të ri', + 'settings' => 'Cilësimet', + 'showing_entries' => 'Duke treguar: nga në: të: të gjitha entrie | ' .'Showing: from to: të: të gjitha shënimet', - 'submit' => 'Paraqesë', + 'submit' => 'Paraqesë', 'successfully_added_new' => 'U shtua me sukses të ri', - 'successfully_deleted' => 'Deleted me sukses', - 'successfully_updated' => 'Përditëso me sukses', - 'timestamp' => 'Timestamp', - 'title' => 'Titulli', - 'type' => 'Lloji', - 'unsigned' => 'Unsigned', - 'unstick_sidebar' => 'Zhvidhos shiritin anësor', - 'update' => 'Përditëso', - 'update_failed' => 'Përditëso dështimi', - 'upload' => 'Ngarko', - 'url' => 'URL', - 'view' => 'Shikoni', - 'viewing' => 'Duke parë', - 'yes' => 'Po', - 'yes_please' => 'Po, Ju lutem', + 'successfully_deleted' => 'Deleted me sukses', + 'successfully_updated' => 'Përditëso me sukses', + 'timestamp' => 'Timestamp', + 'title' => 'Titulli', + 'type' => 'Lloji', + 'unsigned' => 'Unsigned', + 'unstick_sidebar' => 'Zhvidhos shiritin anësor', + 'update' => 'Përditëso', + 'update_failed' => 'Përditëso dështimi', + 'upload' => 'Ngarko', + 'url' => 'URL', + 'view' => 'Shikoni', + 'viewing' => 'Duke parë', + 'yes' => 'Po', + 'yes_please' => 'Po, Ju lutem', ], 'login' => [ - 'loggingin' => 'Identifikimi', + 'loggingin' => 'Identifikimi', 'signin_below' => 'Hyni më poshtë:', - 'welcome' => 'Mirë se vini në Voyager. Adminja e zhdukur për Laravel ', + 'welcome' => 'Mirë se vini në Voyager. Adminja e zhdukur për Laravel ', ], 'profile' => [ - 'avatar' => 'Avatari', - 'edit' => 'Edit My Profile', - 'edit_user' => 'Edit User', - 'password' => 'Fjalëkalimi', + 'avatar' => 'Avatari', + 'edit' => 'Edit My Profile', + 'edit_user' => 'Edit User', + 'password' => 'Fjalëkalimi', 'password_hint' => 'Lëreni bosh për të mbajtur të njëjtën', - 'role' => 'Roli', - 'user_role' => 'Roli i përdoruesit', + 'role' => 'Roli', + 'user_role' => 'Roli i përdoruesit', ], 'settings' => [ - 'usage_help' => 'Ju mund të merrni vlerën e çdo cilësie kudo në faqen tuaj duke telefonuar', - 'save' => 'Save Settings', - 'new' => 'Vendosja e re', - 'help_name' => 'Vendosja e emrit ex: Title Admin', - 'help_key' => 'Vendosja e tastit ex: admin_title', - 'help_option' => '(opsional, vlen vetëm për lloje të caktuara si kuti dropdown ose radio button)', - 'add_new' => 'Shto vendosjen e re', - 'delete_question' => 'A jeni i sigurt që doni të fshini: vendosjen e Vendosjes?', - 'delete_confirm' => 'Po, fshij këtë cilësim', + 'usage_help' => 'Ju mund të merrni vlerën e çdo cilësie kudo në faqen tuaj duke telefonuar', + 'save' => 'Save Settings', + 'new' => 'Vendosja e re', + 'help_name' => 'Vendosja e emrit ex: Title Admin', + 'help_key' => 'Vendosja e tastit ex: admin_title', + 'help_option' => '(opsional, vlen vetëm për lloje të caktuara si kuti dropdown ose radio button)', + 'add_new' => 'Shto vendosjen e re', + 'delete_question' => 'A jeni i sigurt që doni të fshini: vendosjen e Vendosjes?', + 'delete_confirm' => 'Po, fshij këtë cilësim', 'successfully_created' => 'Cilësimet e krijuara me sukses', - 'successfully_saved' => 'Parametrat e ruajtura me sukses', + 'successfully_saved' => 'Parametrat e ruajtura me sukses', 'successfully_deleted' => 'Vendosja me sukses e fshirë', - 'already_at_top' => 'Kjo është tashmë në krye të listës', - 'already_at_bottom' => 'Kjo tashmë është në fund të listës', - 'key_already_exists' => 'Çelësi: çelësi tashmë ekziston', - 'moved_order_up' => 'Kaluar: emri i vendosjes së rendit lart', - 'moved_order_down' => 'Moved: rregullimi i emrit të rendit poshtë', + 'already_at_top' => 'Kjo është tashmë në krye të listës', + 'already_at_bottom' => 'Kjo tashmë është në fund të listës', + 'key_already_exists' => 'Çelësi: çelësi tashmë ekziston', + 'moved_order_up' => 'Kaluar: emri i vendosjes së rendit lart', + 'moved_order_down' => 'Moved: rregullimi i emrit të rendit poshtë', 'successfully_removed' => 'Hiqet me sukses: vlera e emrit', - 'group_general' => 'Përgjithshme', - 'group_admin' => 'Admin', - 'group_site' => 'Site', - 'group' => 'Grupi', - 'help_group' => 'Grupi ky përcaktim është caktuar për', + 'group_general' => 'Përgjithshme', + 'group_admin' => 'Admin', + 'group_site' => 'Site', + 'group' => 'Grupi', + 'help_group' => 'Grupi ky përcaktim është caktuar për', ], 'media' => [ - 'add_new_folder' => 'Shto një dosje të re', - 'audio_support' => 'Shfletuesi juaj nuk e mbështet elementin audio.', - 'create_new_folder' => 'Krijo dosje të re', + 'add_new_folder' => 'Shto një dosje të re', + 'audio_support' => 'Shfletuesi juaj nuk e mbështet elementin audio.', + 'create_new_folder' => 'Krijo dosje të re', 'delete_folder_question' => 'Fshirja e një dosjeje do të heqë të gjitha skedarët ' .' dhe dosjet e përmbajtura brenda', - 'destination_folder' => 'Folder Destinacioni', - 'drag_drop_info' => 'Drag dhe rrëzo skedarët ose kliko më poshtë për të ngarkuar', + 'destination_folder' => 'Folder Destinacioni', + 'drag_drop_info' => 'Drag dhe rrëzo skedarët ose kliko më poshtë për të ngarkuar', 'error_already_exists' => 'Na vjen keq që ekziston një skedar / dosje me atë emër ekzistues në atë dosje.', - 'error_creating_dir' => 'Duket sikur diçka e keqe ka shkuar keq në krijimin e direktorisë.' + 'error_creating_dir' => 'Duket sikur diçka e keqe ka shkuar keq në krijimin e direktorisë.' .' kontrolloni lejet tuaja', 'error_deleting_file' => 'Na duket diçka e keqe që duket se ka shkuar gabim duke fshirë këtë skedar,' .' ju lutem kontrolloni lejet', @@ -159,266 +159,266 @@ .'Ju lutem zgjidhni një emër tjetër ose fshini skedarin tjetër.', 'error_moving' => 'Na vjen keq që duket se ka një problem të lëvizë atë ' .'skedar / dosje, ju lutemi bëni sigurohuni që keni lejet e duhura.', - 'error_uploading' => 'Ngarko dështoj: Gabim i panjohur ndodhi!', + 'error_uploading' => 'Ngarko dështoj: Gabim i panjohur ndodhi!', 'folder_exists_already' => 'Na vjen keq se dosja tashmë ekziston, ju lutem' .' fshini atë dosje nëse dëshironi për ta rikrijuar atë', - 'image_does_not_exist' => 'Imazhi nuk ekziston', - 'image_removed' => 'Imazhi i hequr', - 'library' => 'Biblioteka e Medias', - 'loading' => 'LOADING YOUR MEDIA FILES', - 'move_file_folder' => 'Move File / Folder', - 'new_file_folder' => 'Emri i ri i skedarit / folderit', - 'new_folder_name' => 'Emri i ri i dosjes', - 'no_files_here' => 'Asnjë fotografi këtu.', - 'no_files_in_folder' => 'Asnjë fotografi në këtë dosje.', - 'nothing_selected' => 'Nuk ka skedar ose dosje të zgjedhur', - 'rename_file_folder' => 'Rename File / Folder', + 'image_does_not_exist' => 'Imazhi nuk ekziston', + 'image_removed' => 'Imazhi i hequr', + 'library' => 'Biblioteka e Medias', + 'loading' => 'LOADING YOUR MEDIA FILES', + 'move_file_folder' => 'Move File / Folder', + 'new_file_folder' => 'Emri i ri i skedarit / folderit', + 'new_folder_name' => 'Emri i ri i dosjes', + 'no_files_here' => 'Asnjë fotografi këtu.', + 'no_files_in_folder' => 'Asnjë fotografi në këtë dosje.', + 'nothing_selected' => 'Nuk ka skedar ose dosje të zgjedhur', + 'rename_file_folder' => 'Rename File / Folder', 'success_uploaded_file' => 'Skedari i ri i ngarkuar me sukses!', - 'success_uploading' => 'Ngarkuar me sukses!', - 'uploading_wrong_type' => 'Ngarko dështoj: Formati i skedarit të ' + 'success_uploading' => 'Ngarkuar me sukses!', + 'uploading_wrong_type' => 'Ngarko dështoj: Formati i skedarit të ' .'pambështetur ose Është tepër i madh për të ngarkuar!', - 'video_support' => 'Shfletuesi juaj nuk e mbështet videon.', - 'crop' => 'Crop', - 'crop_and_create' => 'Crop & Krijo', + 'video_support' => 'Shfletuesi juaj nuk e mbështet videon.', + 'crop' => 'Crop', + 'crop_and_create' => 'Crop & Krijo', 'crop_override_confirm' => 'Do të anashkalojë imazhin origjinal, a jeni i sigurt?', - 'crop_image' => 'Imazhi i prerë', - 'success_crop_image' => 'Kulloni me sukses imazhin', - 'height' => 'Lartësia:', - 'width' => 'Gjerësia:', + 'crop_image' => 'Imazhi i prerë', + 'success_crop_image' => 'Kulloni me sukses imazhin', + 'height' => 'Lartësia:', + 'width' => 'Gjerësia:', ], 'menu_builder' => [ - 'color' => 'Ngjyra në RGB ose magji (opsionale)', - 'color_ph' => 'Ngjyra (ex. #ffffff ose rgb (255, 255, 255)', - 'create_new_item' => 'Krijo një artikull të ri të menysë', - 'delete_item_confirm' => 'Po, fshini këtë artikull menu', + 'color' => 'Ngjyra në RGB ose magji (opsionale)', + 'color_ph' => 'Ngjyra (ex. #ffffff ose rgb (255, 255, 255)', + 'create_new_item' => 'Krijo një artikull të ri të menysë', + 'delete_item_confirm' => 'Po, fshini këtë artikull menu', 'delete_item_question' => 'A jeni i sigurt që doni ta fshini këtë artikull të menusë?', - 'drag_drop_info' => 'Zvarriteni dhe hiqni menunë Artikujt e mëposhtëm për të riorganizuar ato.', - 'dynamic_route' => 'Rruga dinamike', - 'edit_item' => 'Modifiko artikullin e menysë', - 'icon_class' => 'Klasa e Font Icon për Item Menu (Përdorni një', - 'icon_class2' => 'Klasa e Fonteve Voyager)', - 'icon_class_ph' => 'Klasa e ikonave (opsionale)', - 'item_route' => 'Rruga për artikullin e menysë', - 'item_title' => 'Titulli i artikullit të menysë', - 'link_type' => 'Lloji i lidhjes', - 'new_menu_item' => 'Artikulli i ri i menysë', - 'open_in' => 'Hapni', - 'open_new' => 'New Tab / Window', - 'open_same' => 'Same Tab / Window', - 'route_parameter' => 'Parametrat e rrugës (nëse ka)', - 'static_url' => 'URL statik', + 'drag_drop_info' => 'Zvarriteni dhe hiqni menunë Artikujt e mëposhtëm për të riorganizuar ato.', + 'dynamic_route' => 'Rruga dinamike', + 'edit_item' => 'Modifiko artikullin e menysë', + 'icon_class' => 'Klasa e Font Icon për Item Menu (Përdorni një', + 'icon_class2' => 'Klasa e Fonteve Voyager)', + 'icon_class_ph' => 'Klasa e ikonave (opsionale)', + 'item_route' => 'Rruga për artikullin e menysë', + 'item_title' => 'Titulli i artikullit të menysë', + 'link_type' => 'Lloji i lidhjes', + 'new_menu_item' => 'Artikulli i ri i menysë', + 'open_in' => 'Hapni', + 'open_new' => 'New Tab / Window', + 'open_same' => 'Same Tab / Window', + 'route_parameter' => 'Parametrat e rrugës (nëse ka)', + 'static_url' => 'URL statik', 'successfully_created' => 'Krijoi me sukses artikullin e ri të menysë.', 'successfully_deleted' => 'U zhduk me sukses artikullin e menysë.', 'successfully_updated' => 'U përditësua me sukses artikulli i menusë.', - 'updated_order' => 'Rendi i menysë i përditësuar me sukses.', - 'url' => 'URL për artikullin e menysë', - 'usage_hint' => 'Ju mund të nxjerrni një menu kudo në faqen tuaj duke ' + 'updated_order' => 'Rendi i menysë i përditësuar me sukses.', + 'url' => 'URL për artikullin e menysë', + 'usage_hint' => 'Ju mund të nxjerrni një menu kudo në faqen tuaj duke ' .'telefonuar Mund të dalni këtë menu diku në faqen tënde duke telefonuar', ], 'post' => [ - 'category' => 'Kategoria postare', - 'content' => 'Post Content', - 'details' => 'Detajet e Postës', - 'excerpt' => 'Ekstrakt Përshkrimi i vogël i këtij postimi ', - 'image' => 'Imazhi i postës', + 'category' => 'Kategoria postare', + 'content' => 'Post Content', + 'details' => 'Detajet e Postës', + 'excerpt' => 'Ekstrakt Përshkrimi i vogël i këtij postimi ', + 'image' => 'Imazhi i postës', 'meta_description' => 'Meta Description', - 'meta_keywords' => 'Meta Keywords', - 'new' => 'Krijo postë të re', - 'seo_content' => 'Përmbajtja SEO', - 'seo_title' => 'Titulli i Seo', - 'slug' => 'Slug URL', - 'status' => 'Statusi i Postës', - 'status_draft' => 'draft', - 'status_pending' => 'në pritje', + 'meta_keywords' => 'Meta Keywords', + 'new' => 'Krijo postë të re', + 'seo_content' => 'Përmbajtja SEO', + 'seo_title' => 'Titulli i Seo', + 'slug' => 'Slug URL', + 'status' => 'Statusi i Postës', + 'status_draft' => 'draft', + 'status_pending' => 'në pritje', 'status_published' => 'publikuar', - 'title' => 'Post Titulli', - 'title_sub' => 'Titulli për postin tuaj', - 'update' => 'Update Post', + 'title' => 'Post Titulli', + 'title_sub' => 'Titulli për postin tuaj', + 'update' => 'Update Post', ], 'database' => [ - 'add_bread' => 'Shto BREAD në këtë tabelë', - 'add_new_column' => 'Shto shtyllë të re', - 'add_softdeletes' => 'Shto butona të fshira', - 'add_timestamps' => 'Shto Timestamps', - 'already_exists' => 'ekziston tashmë', - 'already_exists_table' => 'Tabela: tabela tashmë ekziston', - 'bread_crud_actions' => 'BREAD / Actions', - 'bread_info' => 'BREAD info', - 'column' => 'Column', - 'composite_warning' => 'Paralajmërim: kjo kolonë është pjesë e një indeksi të përbërë', - 'controller_name' => 'Emri i Kontrollorit', - 'controller_name_hint' => 'ex. Kontrolluesi i faqes, nëse bosh do të përdorë kontrollorin e BREAD', - 'create_bread_for_table' => 'Krijo BREAD për: table table', - 'create_migration' => 'Krijo migrim për këtë tryezë?', - 'create_model_table' => 'Krijo model për këtë tabelë?', - 'create_new_table' => 'Krijo tabelë të re', - 'create_your_new_table' => 'Krijo tabelën tënde të re', - 'default' => 'Default', - 'delete_bread' => 'Fshi BREAD', + 'add_bread' => 'Shto BREAD në këtë tabelë', + 'add_new_column' => 'Shto shtyllë të re', + 'add_softdeletes' => 'Shto butona të fshira', + 'add_timestamps' => 'Shto Timestamps', + 'already_exists' => 'ekziston tashmë', + 'already_exists_table' => 'Tabela: tabela tashmë ekziston', + 'bread_crud_actions' => 'BREAD / Actions', + 'bread_info' => 'BREAD info', + 'column' => 'Column', + 'composite_warning' => 'Paralajmërim: kjo kolonë është pjesë e një indeksi të përbërë', + 'controller_name' => 'Emri i Kontrollorit', + 'controller_name_hint' => 'ex. Kontrolluesi i faqes, nëse bosh do të përdorë kontrollorin e BREAD', + 'create_bread_for_table' => 'Krijo BREAD për: table table', + 'create_migration' => 'Krijo migrim për këtë tryezë?', + 'create_model_table' => 'Krijo model për këtë tabelë?', + 'create_new_table' => 'Krijo tabelë të re', + 'create_your_new_table' => 'Krijo tabelën tënde të re', + 'default' => 'Default', + 'delete_bread' => 'Fshi BREAD', 'delete_bread_before_table' => 'Ju lutemi sigurohuni që të hiqni BREAD në këtë ' .'tabelë përpara se të fshini tabelën.', - 'delete_table_bread_conf' => 'Po, hiq BREAD', + 'delete_table_bread_conf' => 'Po, hiq BREAD', 'delete_table_bread_quest' => 'Jeni i sigurt që dëshironi të fshini BREAD për: tabelën e tabelës?', - 'delete_table_confirm' => 'Po, fshij këtë tabelë', - 'delete_table_question' => 'A jeni i sigurt që doni të fshini: tabelën e tabelës?', - 'description' => 'Përshkrimi', - 'display_name' => 'Emri i shfaqjes', - 'display_name_plural' => 'Shfaq Emri (Plural)', - 'display_name_singular' => 'Shfaq emrin (Singular)', - 'edit_bread' => 'Edit BREAD', - 'edit_bread_for_table' => 'Ndrysho BREAD për: table table', - 'edit_rows' => 'Redakto rreshtave për: tabelën e tabelës më poshtë', - 'edit_table' => 'Ndrysho tabelën e tabelës më poshtë', - 'edit_table_not_exist' => 'Tabela që dëshironi të redaktoni nuk ekziston', - 'error_creating_bread' => 'Më vjen keq që duket se mund të ketë pasur një ' + 'delete_table_confirm' => 'Po, fshij këtë tabelë', + 'delete_table_question' => 'A jeni i sigurt që doni të fshini: tabelën e tabelës?', + 'description' => 'Përshkrimi', + 'display_name' => 'Emri i shfaqjes', + 'display_name_plural' => 'Shfaq Emri (Plural)', + 'display_name_singular' => 'Shfaq emrin (Singular)', + 'edit_bread' => 'Edit BREAD', + 'edit_bread_for_table' => 'Ndrysho BREAD për: table table', + 'edit_rows' => 'Redakto rreshtave për: tabelën e tabelës më poshtë', + 'edit_table' => 'Ndrysho tabelën e tabelës më poshtë', + 'edit_table_not_exist' => 'Tabela që dëshironi të redaktoni nuk ekziston', + 'error_creating_bread' => 'Më vjen keq që duket se mund të ketë pasur një ' .'problem në krijimin e këtij brezi', 'error_removing_bread' => 'Më vjen keq që duket se ka pasur një problem' .' duke hequr këtë BREAME', 'error_updating_bread' => 'Më vjen keq që duket se mund të ketë pasur ' .'një problem në përditësimin e këtij BREAK ', - 'extra' => 'Extra', - 'field' => 'Fusha', - 'field_safe_failed' => 'Dështoi në ruajtjen e fushës: fushë, ne do të kthehemi prapa!', + 'extra' => 'Extra', + 'field' => 'Fusha', + 'field_safe_failed' => 'Dështoi në ruajtjen e fushës: fushë, ne do të kthehemi prapa!', 'generate_permissions' => 'Generate Permissions', - 'icon_class' => 'Ikona për t\'u përdorur për këtë tabelë', - 'icon_hint' => 'Icon (opsional) Përdorni një', - 'icon_hint2' => 'Klasa Font Voyager', - 'index' => 'INDEKSI', - 'input_type' => 'Lloji i hyrjes', - 'key' => 'Çelësi', - 'model_class' => 'Emri i emrit të modelit', - 'model_name' => 'Emri i modelit', - 'model_name_ph' => 'ex. \ App \ User, nëse majtas bosh do të përpiqet dhe ' + 'icon_class' => 'Ikona për t\'u përdorur për këtë tabelë', + 'icon_hint' => 'Icon (opsional) Përdorni një', + 'icon_hint2' => 'Klasa Font Voyager', + 'index' => 'INDEKSI', + 'input_type' => 'Lloji i hyrjes', + 'key' => 'Çelësi', + 'model_class' => 'Emri i emrit të modelit', + 'model_name' => 'Emri i modelit', + 'model_name_ph' => 'ex. \ App \ User, nëse majtas bosh do të përpiqet dhe ' .'të përdorë emrin e tabelës ', - 'name_warning' => 'Ju lutemi emri kolonën para se të shtoni një indeks', + 'name_warning' => 'Ju lutemi emri kolonën para se të shtoni një indeks', 'no_composites_warning' => 'Kjo tabelë ka indekse të përbërë. Ju lutem vini re se ato nuk janë ' .'të mbështetura për momentin. Kini kujdes kur përpiqeni të shtoni/hiqni indekset', - 'null' => 'Null', + 'null' => 'Null', 'optional_details' => 'Detajet Opsionale', - 'policy_class' => 'Emri i klasës së politikës', - 'policy_name' => 'Emri i politikave', - 'policy_name_ph' => 'ex. \ App \ Policies \ UserPolicy, nëse bosh bosh ' + 'policy_class' => 'Emri i klasës së politikës', + 'policy_name' => 'Emri i politikave', + 'policy_name_ph' => 'ex. \ App \ Policies \ UserPolicy, nëse bosh bosh ' .'do të përpiqet dhe të përdorë parazgjedhjen ', - 'primary' => 'FILLORE', - 'server_pagination' => 'Paraqitja në anë të serverit', - 'success_create_table' => 'Krijohet me sukses: tabela e tabelës', + 'primary' => 'FILLORE', + 'server_pagination' => 'Paraqitja në anë të serverit', + 'success_create_table' => 'Krijohet me sukses: tabela e tabelës', 'success_created_bread' => 'Krijoi me sukses krijesën e re', - 'success_delete_table' => 'fshihet me sukses: tabela e tabelës', - 'success_remove_bread' => 'U largua me sukses BREAD nga: tipi i të dhënave', - 'success_update_bread' => 'Azhurohet me sukses: tipi i të dhënave BREAD', - 'success_update_table' => 'Përditësuar me sukses: tabela e tabelës', - 'table_actions' => 'Veprimet e tabelave', - 'table_columns' => 'Kolona e tabelave', - 'table_has_index' => 'Tabela tashmë ka një indeks primar.', - 'table_name' => 'Emri i tabelës', - 'table_no_columns' => 'Tabela nuk ka kollona ...', - 'type' => 'Lloji', - 'type_not_supported' => 'Ky lloj nuk është i mbështetur', - 'unique' => 'UNIKË', - 'unknown_type' => 'Tip i panjohur', - 'update_table' => 'Tabela e përditësimit', - 'url_slug' => 'Slug URL (duhet të jetë unik)', - 'url_slug_ph' => 'Slug URL (ex posts)', - 'visibility' => 'Shikueshmëria', + 'success_delete_table' => 'fshihet me sukses: tabela e tabelës', + 'success_remove_bread' => 'U largua me sukses BREAD nga: tipi i të dhënave', + 'success_update_bread' => 'Azhurohet me sukses: tipi i të dhënave BREAD', + 'success_update_table' => 'Përditësuar me sukses: tabela e tabelës', + 'table_actions' => 'Veprimet e tabelave', + 'table_columns' => 'Kolona e tabelave', + 'table_has_index' => 'Tabela tashmë ka një indeks primar.', + 'table_name' => 'Emri i tabelës', + 'table_no_columns' => 'Tabela nuk ka kollona ...', + 'type' => 'Lloji', + 'type_not_supported' => 'Ky lloj nuk është i mbështetur', + 'unique' => 'UNIKË', + 'unknown_type' => 'Tip i panjohur', + 'update_table' => 'Tabela e përditësimit', + 'url_slug' => 'Slug URL (duhet të jetë unik)', + 'url_slug_ph' => 'Slug URL (ex posts)', + 'visibility' => 'Shikueshmëria', ], 'dimmer' => [ - 'page' => 'Faqe | Faqet', + 'page' => 'Faqe | Faqet', 'page_link_text' => 'Shikoni të gjitha faqet', - 'page_text' => 'Ju keni: count: string në databazën tuaj. Klikoni butonin më poshtë' + 'page_text' => 'Ju keni: count: string në databazën tuaj. Klikoni butonin më poshtë' .' për të parë të gjitha faqet. ', - 'post' => 'Posta | Postime', + 'post' => 'Posta | Postime', 'post_link_text' => 'Shiko të gjitha postimet', - 'post_text' => 'Ju keni: count: string në databazën tuaj. Klikoni butonin ' + 'post_text' => 'Ju keni: count: string në databazën tuaj. Klikoni butonin ' .'më poshtë për të parë të gjitha postimet. ', - 'user' => 'Përdorues', + 'user' => 'Përdorues', 'user_link_text' => 'Shikoni të gjithë përdoruesit', - 'user_text' => 'Ju keni: count: string në databazën tuaj. Klikoni butonin' + 'user_text' => 'Ju keni: count: string në databazën tuaj. Klikoni butonin' .' më poshtë për të parë të gjithë përdoruesit. ', ], 'form' => [ - 'field_password_keep' => 'Lëreni bosh për të mbajtur të njëjtën', + 'field_password_keep' => 'Lëreni bosh për të mbajtur të njëjtën', 'field_select_dd_relationship' => 'Sigurohuni që të konfiguroni marrëdhënien e ' .'duhur në metodën e metodës së klasa e klasës.', - 'the :class class.', - 'type_checkbox' => 'Kutia e Kontrollit', - 'type_codeeditor' => 'Editor Kodi', - 'type_file' => 'Skedar', - 'type_image' => 'Image', - 'type_radiobutton' => 'Radio Button', - 'type_richtextbox' => 'Rich Textbox', + 'the :class class.', + 'type_checkbox' => 'Kutia e Kontrollit', + 'type_codeeditor' => 'Editor Kodi', + 'type_file' => 'Skedar', + 'type_image' => 'Image', + 'type_radiobutton' => 'Radio Button', + 'type_richtextbox' => 'Rich Textbox', 'type_selectdropdown' => 'Zgjidh Dropdown', - 'type_textarea' => 'Zona e tekstit', - 'type_textbox' => 'Kutia e tekstit', + 'type_textarea' => 'Zona e tekstit', + 'type_textbox' => 'Kutia e tekstit', ], // DataTable translations from: https://github.com/DataTables/Plugins/tree/master/i18n 'datatable' => [ - 'sEmptyTable' => 'Nuk ka të dhëna të disponueshme në tabelë', - 'sInfo' => 'Duke shfaqur _START_ me _END_ të _TOTAL_ entries', - 'sInfoEmpty' => 'Duke shfaqur 0 deri në 0 nga 0 shënime', - 'sInfoFiltered' => '(filtruar nga hyrjet totale _MAX_)', - 'sInfoPostFix' => '', - 'sInfoThousands' => ',', - 'sLengthMenu' => 'Shfaq _MENU_ entries', + 'sEmptyTable' => 'Nuk ka të dhëna të disponueshme në tabelë', + 'sInfo' => 'Duke shfaqur _START_ me _END_ të _TOTAL_ entries', + 'sInfoEmpty' => 'Duke shfaqur 0 deri në 0 nga 0 shënime', + 'sInfoFiltered' => '(filtruar nga hyrjet totale _MAX_)', + 'sInfoPostFix' => '', + 'sInfoThousands' => ',', + 'sLengthMenu' => 'Shfaq _MENU_ entries', 'sLoadingRecords' => 'Loading ...', - 'sProcessing' => 'Përpunimi ...', - 'sSearch' => 'Kërko:', - 'sZeroRecords' => 'Nuk u gjetën shënime përputhëse', - 'oPaginate' => [ - 'sFirst' => 'Së pari', - 'sLast' => 'I fundit', - 'sNext' => 'Tjetra', + 'sProcessing' => 'Përpunimi ...', + 'sSearch' => 'Kërko:', + 'sZeroRecords' => 'Nuk u gjetën shënime përputhëse', + 'oPaginate' => [ + 'sFirst' => 'Së pari', + 'sLast' => 'I fundit', + 'sNext' => 'Tjetra', 'sPrevious' => 'I mëparshmi', ], 'oAria' => [ - 'sSortAscending' => ': aktivizoni për të renditur kolonën në ngjitje', + 'sSortAscending' => ': aktivizoni për të renditur kolonën në ngjitje', 'sSortDescending' => ': aktivizo për të renditur kolonën zbritëse', ], ], 'theme' => [ - 'footer_copyright' => 'Bërë me nga', + 'footer_copyright' => 'Bërë me nga', 'footer_copyright2' => 'Bërë me rum dhe rum më shumë', ], 'json' => [ - 'invalid' => 'Json i pavlefshëm', - 'invalid_message' => 'Duket sikur keni futur disa JSON të pavlefshëm.', - 'valid' => 'Valid Json', + 'invalid' => 'Json i pavlefshëm', + 'invalid_message' => 'Duket sikur keni futur disa JSON të pavlefshëm.', + 'valid' => 'Valid Json', 'validation_errors' => 'Gabimet e validimit', ], 'analytics' => [ - 'by_pageview' => 'Nga pageview', - 'by_sessions' => 'Nga sesionet', - 'by_users' => 'Nga përdoruesit', + 'by_pageview' => 'Nga pageview', + 'by_sessions' => 'Nga sesionet', + 'by_users' => 'Nga përdoruesit', 'no_client_id' => 'Për të parë analitikën që do t\'ju nevojitet për të marrë një ID ' .'të klientit të analytics google dhe shtoni në cilësimet tuaja për kodin ' .'google_analytics_client_id. Merrni çelësin tuaj në tastierën zhvilluese të Google: ', - 'set_view' => 'Zgjidh një pamje', - 'this_vs_last_week' => 'Këtë javë ndaj javës së kaluar', - 'this_vs_last_year' => 'Këtë vit kundër vitit të kaluar', - 'top_browsers' => 'Shfletuesit kryesorë', - 'top_countries' => 'Vendet më të mira', + 'set_view' => 'Zgjidh një pamje', + 'this_vs_last_week' => 'Këtë javë ndaj javës së kaluar', + 'this_vs_last_year' => 'Këtë vit kundër vitit të kaluar', + 'top_browsers' => 'Shfletuesit kryesorë', + 'top_countries' => 'Vendet më të mira', 'various_visualizations' => 'Vizualizime të ndryshme', ], 'error' => [ - 'symlink_created_text' => 'Ne sapo krijuam linkun që mungon për ju.', + 'symlink_created_text' => 'Ne sapo krijuam linkun që mungon për ju.', 'symlink_created_title' => 'Sjellja e humbur e ruajtjes u krijua', - 'symlink_failed_text' => 'Ne nuk arritëm të gjeneronim simbolin e humbur për aplikacionin tënd.' + 'symlink_failed_text' => 'Ne nuk arritëm të gjeneronim simbolin e humbur për aplikacionin tënd.' .' Duket se ofruesi juaj i pritjes nuk e mbështet atë.', - 'symlink_failed_title' => 'Nuk mundi të krijoj simbolin e ruajtjes së mungesës', + 'symlink_failed_title' => 'Nuk mundi të krijoj simbolin e ruajtjes së mungesës', 'symlink_missing_button' => 'Fix it', - 'symlink_missing_text' => 'Ne nuk mund të gjejmë një symlink të ruajtjes. ' + 'symlink_missing_text' => 'Ne nuk mund të gjejmë një symlink të ruajtjes. ' .'Kjo mund të shkaktojë probleme me ngarkimi i skedarëve të medias nga shfletuesi.', - 'loading media files from the browser.', + 'loading media files from the browser.', 'symlink_missing_title' => 'Skeda e munguar e ruajtjes', ], ]; diff --git a/lang/ar/pagination.php b/lang/ar/pagination.php index 9a1276a8d..2eee353ef 100644 --- a/lang/ar/pagination.php +++ b/lang/ar/pagination.php @@ -14,6 +14,6 @@ */ 'previous' => '« السابق', - 'next' => 'التالي »', + 'next' => 'التالي »', ]; diff --git a/lang/ar/passwords.php b/lang/ar/passwords.php index ae8f4e693..30c327be0 100644 --- a/lang/ar/passwords.php +++ b/lang/ar/passwords.php @@ -17,6 +17,6 @@ 'sent' => 'تم إرسال تفاصيل استعادة كلمة المرور الخاصة بك إلى بريدك الإلكتروني', 'throttled' => 'الرجاء الانتظار قبل إعادة المحاولة', 'token' => 'رمز استعادة كلمة المرور هذا غير صالح', - 'user' => "لم يتم العثور على أيّ حسابٍ بهذا العنوان الإلكتروني", + 'user' => 'لم يتم العثور على أيّ حسابٍ بهذا العنوان الإلكتروني', ]; diff --git a/lang/ar/validation.php b/lang/ar/validation.php index ca8e6f0df..d50427d2e 100644 --- a/lang/ar/validation.php +++ b/lang/ar/validation.php @@ -172,40 +172,40 @@ */ 'attributes' => [ - 'name' => 'الاسم', - 'username' => 'اسم المُستخدم', - 'email' => 'البريد الالكتروني', - 'first_name' => 'الاسم', - 'last_name' => 'اسم العائلة', - 'password' => 'كلمة المرور', + 'name' => 'الاسم', + 'username' => 'اسم المُستخدم', + 'email' => 'البريد الالكتروني', + 'first_name' => 'الاسم', + 'last_name' => 'اسم العائلة', + 'password' => 'كلمة المرور', 'password_confirmation' => 'تأكيد كلمة المرور', - 'city' => 'المدينة', - 'country' => 'الدولة', - 'address' => 'العنوان', - 'phone' => 'الهاتف', - 'mobile' => 'الجوال', - 'age' => 'العمر', - 'sex' => 'الجنس', - 'gender' => 'النوع', - 'day' => 'اليوم', - 'month' => 'الشهر', - 'year' => 'السنة', - 'hour' => 'ساعة', - 'minute' => 'دقيقة', - 'second' => 'ثانية', - 'content' => 'المُحتوى', - 'description' => 'الوصف', - 'excerpt' => 'المُلخص', - 'date' => 'التاريخ', - 'time' => 'الوقت', - 'available' => 'مُتاح', - 'size' => 'الحجم', - 'price' => 'السعر', - 'desc' => 'نبذه', - 'title' => 'العنوان', - 'q' => 'البحث', - 'link' => ' ', - 'slug' => ' ', + 'city' => 'المدينة', + 'country' => 'الدولة', + 'address' => 'العنوان', + 'phone' => 'الهاتف', + 'mobile' => 'الجوال', + 'age' => 'العمر', + 'sex' => 'الجنس', + 'gender' => 'النوع', + 'day' => 'اليوم', + 'month' => 'الشهر', + 'year' => 'السنة', + 'hour' => 'ساعة', + 'minute' => 'دقيقة', + 'second' => 'ثانية', + 'content' => 'المُحتوى', + 'description' => 'الوصف', + 'excerpt' => 'المُلخص', + 'date' => 'التاريخ', + 'time' => 'الوقت', + 'available' => 'مُتاح', + 'size' => 'الحجم', + 'price' => 'السعر', + 'desc' => 'نبذه', + 'title' => 'العنوان', + 'q' => 'البحث', + 'link' => ' ', + 'slug' => ' ', ], ]; diff --git a/lang/ar/voyager.php b/lang/ar/voyager.php index 4adadfde2..c6a240a9d 100644 --- a/lang/ar/voyager.php +++ b/lang/ar/voyager.php @@ -9,368 +9,368 @@ ], 'generic' => [ - 'action' => 'إجراء', - 'actions' => 'الإجراءات', - 'add' => 'إضافة', - 'add_folder' => 'إضافة مجلد', - 'add_new' => 'إضافة جديد', - 'all_done' => 'تم الكل', - 'are_you_sure' => 'هل أنت واثق', - 'are_you_sure_delete' => 'هل أنت متأكد أنك تريد الحذف', - 'auto_increment' => 'زيادة تلقائية', - 'browse' => 'استعراض', - 'builder' => 'البناء', - 'cancel' => 'إلغاء', - 'choose_type' => 'اختر النوع', - 'click_here' => 'اضغط هنا', - 'close' => 'إغلاق', - 'compass' => 'البوصلة', - 'created_at' => 'تاريخ الإنشاء', - 'custom' => 'معدل', - 'dashboard' => 'لوحة التحكم', - 'database' => 'قاعدة البيانات', - 'default' => 'افتراضي', - 'delete' => 'حذف', - 'delete_confirm' => 'نعم، احذفه!', - 'delete_question' => 'هل أنت متأكد أنك تريد الحذف', - 'delete_this_confirm' => 'نعم، احذف', - 'deselect_all' => 'إلغاء تحديد الكل', - 'download' => 'تحميل', - 'edit' => 'تعديل', - 'email' => 'البريد الإلكتروني', - 'error_deleting' => 'عذرا، يبدو أنه حدثت مشكلة أثناء الحذف', - 'exception' => 'استثناء', - 'featured' => 'مميز', - 'field_does_not_exist' => 'الحقل غير موجود', - 'how_to_use' => 'كيفة الاستخدام', - 'index' => 'فهرس', - 'internal_error' => 'خطأ داخلي', - 'items' => 'عناصر', - 'keep_sidebar_open' => 'الحفاظ على فتح الشريط الجانبي', - 'key' => 'مفتاح', - 'last_modified' => 'آخر تعديل', - 'length' => 'الطول', - 'login' => 'تسجيل الدخول', - 'media' => 'الوسائط', - 'menu_builder' => 'منشئ القوائم', - 'move' => 'نقل', - 'name' => 'الاسم', - 'new' => 'جديد', - 'no' => 'لا', - 'no_thanks' => 'لا شكراً', - 'not_null' => 'غير فارغة', - 'options' => 'خيارات', - 'password' => 'كلمه السر', - 'permissions' => 'الصلاحيات', - 'profile' => 'الملف الشخصي', - 'public_url' => 'الرابط URL المنشور', - 'read' => 'معاينة', - 'rename' => 'إعادة تسمية', - 'required' => 'مطلوب', - 'return_to_list' => 'العودة إلى القائمة', - 'route' => 'Route الرابط', - 'save' => 'حفظ', - 'search' => 'بحث', - 'select_all' => 'تحديد الكل', - 'settings' => 'الإعدادت', - 'showing_entries' => 'عرض :from إلى :to من :all عنصر|عرض :from إلى :to من :all عناصر', - 'submit' => 'إرسال', + 'action' => 'إجراء', + 'actions' => 'الإجراءات', + 'add' => 'إضافة', + 'add_folder' => 'إضافة مجلد', + 'add_new' => 'إضافة جديد', + 'all_done' => 'تم الكل', + 'are_you_sure' => 'هل أنت واثق', + 'are_you_sure_delete' => 'هل أنت متأكد أنك تريد الحذف', + 'auto_increment' => 'زيادة تلقائية', + 'browse' => 'استعراض', + 'builder' => 'البناء', + 'cancel' => 'إلغاء', + 'choose_type' => 'اختر النوع', + 'click_here' => 'اضغط هنا', + 'close' => 'إغلاق', + 'compass' => 'البوصلة', + 'created_at' => 'تاريخ الإنشاء', + 'custom' => 'معدل', + 'dashboard' => 'لوحة التحكم', + 'database' => 'قاعدة البيانات', + 'default' => 'افتراضي', + 'delete' => 'حذف', + 'delete_confirm' => 'نعم، احذفه!', + 'delete_question' => 'هل أنت متأكد أنك تريد الحذف', + 'delete_this_confirm' => 'نعم، احذف', + 'deselect_all' => 'إلغاء تحديد الكل', + 'download' => 'تحميل', + 'edit' => 'تعديل', + 'email' => 'البريد الإلكتروني', + 'error_deleting' => 'عذرا، يبدو أنه حدثت مشكلة أثناء الحذف', + 'exception' => 'استثناء', + 'featured' => 'مميز', + 'field_does_not_exist' => 'الحقل غير موجود', + 'how_to_use' => 'كيفة الاستخدام', + 'index' => 'فهرس', + 'internal_error' => 'خطأ داخلي', + 'items' => 'عناصر', + 'keep_sidebar_open' => 'الحفاظ على فتح الشريط الجانبي', + 'key' => 'مفتاح', + 'last_modified' => 'آخر تعديل', + 'length' => 'الطول', + 'login' => 'تسجيل الدخول', + 'media' => 'الوسائط', + 'menu_builder' => 'منشئ القوائم', + 'move' => 'نقل', + 'name' => 'الاسم', + 'new' => 'جديد', + 'no' => 'لا', + 'no_thanks' => 'لا شكراً', + 'not_null' => 'غير فارغة', + 'options' => 'خيارات', + 'password' => 'كلمه السر', + 'permissions' => 'الصلاحيات', + 'profile' => 'الملف الشخصي', + 'public_url' => 'الرابط URL المنشور', + 'read' => 'معاينة', + 'rename' => 'إعادة تسمية', + 'required' => 'مطلوب', + 'return_to_list' => 'العودة إلى القائمة', + 'route' => 'Route الرابط', + 'save' => 'حفظ', + 'search' => 'بحث', + 'select_all' => 'تحديد الكل', + 'settings' => 'الإعدادت', + 'showing_entries' => 'عرض :from إلى :to من :all عنصر|عرض :from إلى :to من :all عناصر', + 'submit' => 'إرسال', 'successfully_added_new' => 'تمت إضافة جديد بنجاح', - 'successfully_deleted' => 'تم الحذف بنجاح', - 'successfully_updated' => 'تم التحديث بنجاح', - 'timestamp' => 'صيغة التوقيت', - 'title' => 'العنوان', - 'type' => 'النوع', - 'unsigned' => 'غير سالبة', - 'unstick_sidebar' => 'إلغاء تثبيت الشريط الجانبي', - 'update' => 'تحديث', - 'update_failed' => 'فشل التحديث', - 'upload' => 'رفع', - 'url' => 'URL الرابط', - 'view' => 'معاينة', - 'viewing' => 'معاينة', - 'yes' => 'نعم', - 'yes_please' => 'نعم، من فضلك', + 'successfully_deleted' => 'تم الحذف بنجاح', + 'successfully_updated' => 'تم التحديث بنجاح', + 'timestamp' => 'صيغة التوقيت', + 'title' => 'العنوان', + 'type' => 'النوع', + 'unsigned' => 'غير سالبة', + 'unstick_sidebar' => 'إلغاء تثبيت الشريط الجانبي', + 'update' => 'تحديث', + 'update_failed' => 'فشل التحديث', + 'upload' => 'رفع', + 'url' => 'URL الرابط', + 'view' => 'معاينة', + 'viewing' => 'معاينة', + 'yes' => 'نعم', + 'yes_please' => 'نعم، من فضلك', ], 'login' => [ - 'loggingin' => 'دخول', + 'loggingin' => 'دخول', 'signin_below' => 'تسجيل الدخول :', - 'welcome' => 'مرحبا بكم في Voyager. لوحة التحكم المكملة للارافيل', + 'welcome' => 'مرحبا بكم في Voyager. لوحة التحكم المكملة للارافيل', ], 'profile' => [ - 'avatar' => 'الصورة الرمزية', - 'edit' => 'تعديل', - 'edit_user' => 'تعديل المستخدم', - 'password' => 'كلمه السر', + 'avatar' => 'الصورة الرمزية', + 'edit' => 'تعديل', + 'edit_user' => 'تعديل المستخدم', + 'password' => 'كلمه السر', 'password_hint' => 'اتركها فارغة إذا لم ترد التعديل عليها', - 'role' => 'الدور', - 'user_role' => 'دور المستخدم', + 'role' => 'الدور', + 'user_role' => 'دور المستخدم', ], 'settings' => [ - 'usage_help' => 'يمكنك الحصول على قيمة أي إعداد في أي مكان في موقعك عن طريق استخدام', - 'save' => 'احفظ الإعدادات', - 'new' => 'إعداد جديد', - 'help_name' => 'اسم الإعداد مثال : Admin Title', - 'help_key' => 'مفتاح الإعداد مثال : admin_title', - 'help_option' => '(اختياري، ينطبق فقط على أنواع معينة مثل القائمة المنسدلة أو زر الاختيار)', - 'add_new' => 'إضافة إعداد جديد', - 'delete_question' => 'هل تريد بالتأكيد حذف الإعداد :setting ؟', - 'delete_confirm' => 'نعم، حذف هذا الإعداد', + 'usage_help' => 'يمكنك الحصول على قيمة أي إعداد في أي مكان في موقعك عن طريق استخدام', + 'save' => 'احفظ الإعدادات', + 'new' => 'إعداد جديد', + 'help_name' => 'اسم الإعداد مثال : Admin Title', + 'help_key' => 'مفتاح الإعداد مثال : admin_title', + 'help_option' => '(اختياري، ينطبق فقط على أنواع معينة مثل القائمة المنسدلة أو زر الاختيار)', + 'add_new' => 'إضافة إعداد جديد', + 'delete_question' => 'هل تريد بالتأكيد حذف الإعداد :setting ؟', + 'delete_confirm' => 'نعم، حذف هذا الإعداد', 'successfully_created' => 'تم إنشاء الإعدادات بنجاح', - 'successfully_saved' => 'تم حفظ الإعدادات بنجاح', + 'successfully_saved' => 'تم حفظ الإعدادات بنجاح', 'successfully_deleted' => 'تم حذف الإعداد بنجاح', - 'already_at_top' => 'موجود بالفعل في أعلى القائمة', - 'already_at_bottom' => 'موجود بالفعل في أسفل القائمة', - 'moved_order_up' => 'القيمة :name تم نقلها إلى أعلى', - 'moved_order_down' => 'القيمة :name تم نقلها إلى أسفل', + 'already_at_top' => 'موجود بالفعل في أعلى القائمة', + 'already_at_bottom' => 'موجود بالفعل في أسفل القائمة', + 'moved_order_up' => 'القيمة :name تم نقلها إلى أعلى', + 'moved_order_down' => 'القيمة :name تم نقلها إلى أسفل', 'successfully_removed' => 'تم إزالة :name بنجاح', ], 'media' => [ - 'add_new_folder' => 'إضافة مجلد جديد', - 'audio_support' => 'متصفحك لا يدعم عنصر الصوت.', - 'create_new_folder' => 'إنشاء مجلد جديد', + 'add_new_folder' => 'إضافة مجلد جديد', + 'audio_support' => 'متصفحك لا يدعم عنصر الصوت.', + 'create_new_folder' => 'إنشاء مجلد جديد', 'delete_folder_question' => 'سيؤدي حذف مجلد إلى إزالة جميع الملفات والمجلدات الموجودة في داخله', - 'destination_folder' => 'مجلد الوجهة', - 'drag_drop_info' => 'يمكنك سحب الملفات وإفلاتها أو النقر أدناه لرفعها', - 'error_already_exists' => 'عذراً، يوجد بالفعل ملف/مجلد بهذا الاسم في هذا المجلد.', - 'error_creating_dir' => 'عذراً يبدو أن هناك خطأ في إنشاء المجلد، يرجى التحقق من صلاحياتك', - 'error_deleting_file' => 'عذراً، يبدو أنه حدث خطأ عند حذف هذا الملف، يرجى التحقق من صلاحياتك', - 'error_deleting_folder' => 'عذراً، يبدو أنه حدث خطأ عند حذف هذا المجلد، يرجى التحقق من صلاحياتك', - 'error_may_exist' => 'قد يكون هناك ملف أو مجلد موجود بالفعل بهذا الاسم. الرجاء اختيار اسم آخر أو حذف الملف الآخر.', - 'error_moving' => 'عذراً، يبدو أنه حصلت مشكلة أثناء نقل هذا الملف/المجلد، يرجى التأكد من أن لديك الصلاحيات الصحيحة.', - 'error_uploading' => 'أخفق الرفع: حدث خطأ غير معلوم!', - 'folder_exists_already' => 'عذراً، هذا المجلد موجود بالفعل، يرجى حذف هذا المجلد إذا كنت ترغب في إعادة إنشائه', - 'image_does_not_exist' => 'الصورة غير موجودة', - 'image_removed' => 'تمت إزالة الصورة', - 'library' => 'مكتبة الوسائط', - 'loading' => 'تحميل ملفات الوسائط الخاصة بك', - 'move_file_folder' => 'نقل ملف/مجلد', - 'new_file_folder' => 'اسم ملف/مجلد جديد', - 'new_folder_name' => 'اسم مجلد جديد', - 'no_files_here' => 'لا توجد ملفات هنا.', - 'no_files_in_folder' => 'لا توجد ملفات في هذا المجلد.', - 'nothing_selected' => 'لم يتم تحديد ملف أو مجلد', - 'rename_file_folder' => 'إعادة تسمية ملف/مجلد', - 'success_uploaded_file' => 'تم رفع ملف جديد بنجاح!', - 'success_uploading' => 'تم رفع الصورة بنجاح!', - 'uploading_wrong_type' => 'فشل الرفع: تنسيق الملف غير مدعوم أو أنه كبير جدا لرفعه!', - 'video_support' => 'متصفحك الحالي لا يدعم تشغيل الفيديو.', + 'destination_folder' => 'مجلد الوجهة', + 'drag_drop_info' => 'يمكنك سحب الملفات وإفلاتها أو النقر أدناه لرفعها', + 'error_already_exists' => 'عذراً، يوجد بالفعل ملف/مجلد بهذا الاسم في هذا المجلد.', + 'error_creating_dir' => 'عذراً يبدو أن هناك خطأ في إنشاء المجلد، يرجى التحقق من صلاحياتك', + 'error_deleting_file' => 'عذراً، يبدو أنه حدث خطأ عند حذف هذا الملف، يرجى التحقق من صلاحياتك', + 'error_deleting_folder' => 'عذراً، يبدو أنه حدث خطأ عند حذف هذا المجلد، يرجى التحقق من صلاحياتك', + 'error_may_exist' => 'قد يكون هناك ملف أو مجلد موجود بالفعل بهذا الاسم. الرجاء اختيار اسم آخر أو حذف الملف الآخر.', + 'error_moving' => 'عذراً، يبدو أنه حصلت مشكلة أثناء نقل هذا الملف/المجلد، يرجى التأكد من أن لديك الصلاحيات الصحيحة.', + 'error_uploading' => 'أخفق الرفع: حدث خطأ غير معلوم!', + 'folder_exists_already' => 'عذراً، هذا المجلد موجود بالفعل، يرجى حذف هذا المجلد إذا كنت ترغب في إعادة إنشائه', + 'image_does_not_exist' => 'الصورة غير موجودة', + 'image_removed' => 'تمت إزالة الصورة', + 'library' => 'مكتبة الوسائط', + 'loading' => 'تحميل ملفات الوسائط الخاصة بك', + 'move_file_folder' => 'نقل ملف/مجلد', + 'new_file_folder' => 'اسم ملف/مجلد جديد', + 'new_folder_name' => 'اسم مجلد جديد', + 'no_files_here' => 'لا توجد ملفات هنا.', + 'no_files_in_folder' => 'لا توجد ملفات في هذا المجلد.', + 'nothing_selected' => 'لم يتم تحديد ملف أو مجلد', + 'rename_file_folder' => 'إعادة تسمية ملف/مجلد', + 'success_uploaded_file' => 'تم رفع ملف جديد بنجاح!', + 'success_uploading' => 'تم رفع الصورة بنجاح!', + 'uploading_wrong_type' => 'فشل الرفع: تنسيق الملف غير مدعوم أو أنه كبير جدا لرفعه!', + 'video_support' => 'متصفحك الحالي لا يدعم تشغيل الفيديو.', ], 'menu_builder' => [ - 'color' => 'اللون بصيغة RGB أو hex (اختياري)', - 'color_ph' => 'اللون (مثل #ffffff أو rgb(255, 255, 255)', - 'create_new_item' => 'إنشاء عنصر جديد', - 'delete_item_confirm' => 'نعم، حذف هذا العنصر من القائمة', + 'color' => 'اللون بصيغة RGB أو hex (اختياري)', + 'color_ph' => 'اللون (مثل #ffffff أو rgb(255, 255, 255)', + 'create_new_item' => 'إنشاء عنصر جديد', + 'delete_item_confirm' => 'نعم، حذف هذا العنصر من القائمة', 'delete_item_question' => 'هل تريد بالتأكيد حذف هذا العنصر من القائمة؟', - 'drag_drop_info' => 'سحب وإسقاط عناصر القائمة أدناه لإعادة ترتيبها.', - 'dynamic_route' => 'موجه ديناميكي', - 'edit_item' => 'تعديل عنصر القائمة', - 'icon_class' => 'المعرف (class) لأيقونة عنصر القائمة (استخدم', - 'icon_class2' => 'معرفات أيقونات فوياجر)', - 'icon_class_ph' => 'معرف الأيقونة (اختياري)', - 'item_route' => 'Route الخاص بعنصر القائمة', - 'item_title' => 'عنوان عنصر القائمة', - 'link_type' => 'نوع الرابط', - 'new_menu_item' => 'عنصر جديد', - 'open_in' => 'فتح في', - 'open_new' => 'تبويب/نافذة جديدة', - 'open_same' => 'نفس التبويب/النافذة', - 'route_parameter' => 'المتغيرات الخاصة بال Route (إذا وجدت)', - 'static_url' => 'رابط URL ثابت', + 'drag_drop_info' => 'سحب وإسقاط عناصر القائمة أدناه لإعادة ترتيبها.', + 'dynamic_route' => 'موجه ديناميكي', + 'edit_item' => 'تعديل عنصر القائمة', + 'icon_class' => 'المعرف (class) لأيقونة عنصر القائمة (استخدم', + 'icon_class2' => 'معرفات أيقونات فوياجر)', + 'icon_class_ph' => 'معرف الأيقونة (اختياري)', + 'item_route' => 'Route الخاص بعنصر القائمة', + 'item_title' => 'عنوان عنصر القائمة', + 'link_type' => 'نوع الرابط', + 'new_menu_item' => 'عنصر جديد', + 'open_in' => 'فتح في', + 'open_new' => 'تبويب/نافذة جديدة', + 'open_same' => 'نفس التبويب/النافذة', + 'route_parameter' => 'المتغيرات الخاصة بال Route (إذا وجدت)', + 'static_url' => 'رابط URL ثابت', 'successfully_created' => 'تم إنشاء عنصر جديد فى القائمة بنجاح.', 'successfully_deleted' => 'تم حذف عنصر القائمة بنجاح.', 'successfully_updated' => 'تم تحديث عنصر فى القائمة بنجاح.', - 'updated_order' => 'تم تحديث ترتيب القائمة بنجاح.', - 'url' => 'رابط URL لعنصر القائمة', - 'usage_hint' => 'يمكنك عرض قائمة في أي مكان في موقعك من طريق استدعاء | يمكنك عرض هذه القائمة في أي مكان على موقعك عن طريق استدعاء', + 'updated_order' => 'تم تحديث ترتيب القائمة بنجاح.', + 'url' => 'رابط URL لعنصر القائمة', + 'usage_hint' => 'يمكنك عرض قائمة في أي مكان في موقعك من طريق استدعاء | يمكنك عرض هذه القائمة في أي مكان على موقعك عن طريق استدعاء', ], 'post' => [ - 'category' => 'قسم المقال', - 'content' => 'محتويات المقال', - 'details' => 'تفاصيل المقال', - 'excerpt' => 'مقتطف وصف صغير لهذا المقال ', - 'image' => 'صورة المقال', + 'category' => 'قسم المقال', + 'content' => 'محتويات المقال', + 'details' => 'تفاصيل المقال', + 'excerpt' => 'مقتطف وصف صغير لهذا المقال ', + 'image' => 'صورة المقال', 'meta_description' => 'وصف', - 'meta_keywords' => 'كلمات دلالية', - 'new' => 'إنشاء مقال جديد', - 'seo_content' => 'محتوى متوافق مع محركات البحث SEO', - 'seo_title' => 'عنوان SEO', - 'slug' => 'الرابط URL', - 'status' => 'حالة المقال', - 'status_draft' => 'مسودة', - 'status_pending' => 'معلق', + 'meta_keywords' => 'كلمات دلالية', + 'new' => 'إنشاء مقال جديد', + 'seo_content' => 'محتوى متوافق مع محركات البحث SEO', + 'seo_title' => 'عنوان SEO', + 'slug' => 'الرابط URL', + 'status' => 'حالة المقال', + 'status_draft' => 'مسودة', + 'status_pending' => 'معلق', 'status_published' => 'منشور', - 'title' => 'عنوان المقال', - 'title_sub' => 'عنوان مقالك', - 'update' => 'تحديث المقال', + 'title' => 'عنوان المقال', + 'title_sub' => 'عنوان مقالك', + 'update' => 'تحديث المقال', ], 'database' => [ - 'add_bread' => 'أضف BREAD إلى هذا الجدول', - 'add_new_column' => 'إضافة عمود جديد', - 'add_softdeletes' => 'إضافة الحذف الناعم soft Deletes', - 'add_timestamps' => 'إضافة الطوابع الزمنية Timestamps', - 'already_exists' => 'موجود بالفعل', - 'already_exists_table' => 'الجدول :table موجود بالفعل', - 'bread_crud_actions' => 'إجراءات BREAD/CRUD', - 'bread_info' => 'معلومات ال BREAD', - 'column' => 'عمود', - 'composite_warning' => 'تحذير: هذا العمود جزء من فهرس مركب', - 'controller_name' => 'اسم وحدة التحكم Controller', - 'controller_name_hint' => 'مثال PageController, إذا تركت فارغة ستستخدم ال BREAD Controller', - 'create_bread_for_table' => 'إنشاء ال BREAD للجدول :table', - 'create_migration' => 'هل تريد إنشاء ملف تحديث قاعدة البيانات لهذا الجدول؟', - 'create_model_table' => 'إنشاء نموذج Model لهذا الجدول؟', - 'create_new_table' => 'إنشاء جدول جديد', - 'create_your_new_table' => 'إنشاء جدولك الجديد', - 'default' => 'افتراضي', - 'delete_bread' => 'حذف ال BREAD', + 'add_bread' => 'أضف BREAD إلى هذا الجدول', + 'add_new_column' => 'إضافة عمود جديد', + 'add_softdeletes' => 'إضافة الحذف الناعم soft Deletes', + 'add_timestamps' => 'إضافة الطوابع الزمنية Timestamps', + 'already_exists' => 'موجود بالفعل', + 'already_exists_table' => 'الجدول :table موجود بالفعل', + 'bread_crud_actions' => 'إجراءات BREAD/CRUD', + 'bread_info' => 'معلومات ال BREAD', + 'column' => 'عمود', + 'composite_warning' => 'تحذير: هذا العمود جزء من فهرس مركب', + 'controller_name' => 'اسم وحدة التحكم Controller', + 'controller_name_hint' => 'مثال PageController, إذا تركت فارغة ستستخدم ال BREAD Controller', + 'create_bread_for_table' => 'إنشاء ال BREAD للجدول :table', + 'create_migration' => 'هل تريد إنشاء ملف تحديث قاعدة البيانات لهذا الجدول؟', + 'create_model_table' => 'إنشاء نموذج Model لهذا الجدول؟', + 'create_new_table' => 'إنشاء جدول جديد', + 'create_your_new_table' => 'إنشاء جدولك الجديد', + 'default' => 'افتراضي', + 'delete_bread' => 'حذف ال BREAD', 'delete_bread_before_table' => 'الرجاء التأكد من إزالة ال BREAD الخاصة بهذا الجدول قبل حذف الجدول.', - 'delete_table_bread_conf' => 'نعم، إزالة ال BREAD', - 'delete_table_bread_quest' => 'هل أنت متأكد من حذف ال BREAD للجدول :table ؟', - 'delete_table_confirm' => 'نعم، احذف هذا الجدول', - 'delete_table_question' => 'هل تريد بالتأكيد حذف الجدول :table ؟', - 'description' => 'الوصف', - 'display_name' => 'اسم العرض', - 'display_name_plural' => 'اسم العرض (جمع)', - 'display_name_singular' => 'اسم العرض (مفرد)', - 'edit_bread' => 'تعديل ال BREAD', - 'edit_bread_for_table' => 'تعديل ال BREAD للجدول :table', - 'edit_rows' => 'تعديل الصفوف للجدول :table أدناه', - 'edit_table' => 'تعديل الجدول :table أدناه', - 'edit_table_not_exist' => 'الجدول الذي تريد تعديله غير موجود', - 'error_creating_bread' => 'عذراً، يبدو أن هناك مشكلة في إنشاء هذا ال BREAD', - 'error_removing_bread' => 'عذراً، يبدو أنه حدثت مشكلة أثناء إزالة ال BREAD', - 'error_updating_bread' => 'عذرا، يبدو أنه قد حدثت مشكلة أثناء تحديث هذا ال BREAD', - 'extra' => 'إضافي', - 'field' => 'حقل', - 'field_safe_failed' => 'أخفق حفظ :field سيتم التراجع!', - 'generate_permissions' => 'توليد الصلاحيات', - 'icon_class' => 'رمز لاستخدامه لهذا الجدول', - 'icon_hint' => 'رمز (اختياري) استخدم', - 'icon_hint2' => 'معرفات أيقونات فوياجر', - 'index' => 'فهرس', - 'input_type' => 'نوع الإدخال', - 'key' => 'مفتاح', - 'model_class' => 'اسم فئة النموذج Model Class', - 'model_name' => 'اسم النموذج Model', - 'model_name_ph' => 'مثال. \App\Models\User, إذا تركت فارغة ستستخدم اسم الجدول', - 'name_warning' => 'يرجى تسمية العمود قبل إضافة فهرس', - 'no_composites_warning' => 'يحتوي هذا الجدول على فهارس مركبة. يرجى ملاحظة أنها غير معتمدة في الوقت الراهن. كن حذرا عند محاولة إضافة / إزالة الفهارس.', - 'null' => 'Null', - 'optional_details' => 'تفاصيل اختيارية', - 'primary' => 'اساسي Primary', - 'server_pagination' => 'ترقيم الصفحات من جانب الخادم', - 'success_create_table' => 'تم إنشاء الجدول :table بنجاح', - 'success_created_bread' => 'تم إنشاء BREAD بنجاح', - 'success_delete_table' => 'تم حذف الجدول :table بنجاح', - 'success_remove_bread' => 'تم إزالة ال BREAD من :datatype بنجاح', - 'success_update_bread' => 'تم تحديث ال BREAD الخاصة ب :datatype بنجاح', - 'success_update_table' => 'تم تحديث الدول :table بنجاح', - 'table_actions' => 'إجراءات الجدول', - 'table_columns' => 'أعمدة الجدول', - 'table_has_index' => 'يحتوي الجدول بالفعل على فهرس أساسي.', - 'table_name' => 'اسم الجدول', - 'table_no_columns' => 'لا يحتوي الجدول على أعمدة ...', - 'type' => 'النوع', - 'type_not_supported' => 'هذا النوع غير معتمد', - 'unique' => 'فريد', - 'unknown_type' => 'نوع غير معروف', - 'update_table' => 'تحديث الجدول', - 'url_slug' => 'رابط URL (يجب أن يكون فريد)', - 'url_slug_ph' => 'رابط URL (مثل posts)', - 'visibility' => 'الظهور', + 'delete_table_bread_conf' => 'نعم، إزالة ال BREAD', + 'delete_table_bread_quest' => 'هل أنت متأكد من حذف ال BREAD للجدول :table ؟', + 'delete_table_confirm' => 'نعم، احذف هذا الجدول', + 'delete_table_question' => 'هل تريد بالتأكيد حذف الجدول :table ؟', + 'description' => 'الوصف', + 'display_name' => 'اسم العرض', + 'display_name_plural' => 'اسم العرض (جمع)', + 'display_name_singular' => 'اسم العرض (مفرد)', + 'edit_bread' => 'تعديل ال BREAD', + 'edit_bread_for_table' => 'تعديل ال BREAD للجدول :table', + 'edit_rows' => 'تعديل الصفوف للجدول :table أدناه', + 'edit_table' => 'تعديل الجدول :table أدناه', + 'edit_table_not_exist' => 'الجدول الذي تريد تعديله غير موجود', + 'error_creating_bread' => 'عذراً، يبدو أن هناك مشكلة في إنشاء هذا ال BREAD', + 'error_removing_bread' => 'عذراً، يبدو أنه حدثت مشكلة أثناء إزالة ال BREAD', + 'error_updating_bread' => 'عذرا، يبدو أنه قد حدثت مشكلة أثناء تحديث هذا ال BREAD', + 'extra' => 'إضافي', + 'field' => 'حقل', + 'field_safe_failed' => 'أخفق حفظ :field سيتم التراجع!', + 'generate_permissions' => 'توليد الصلاحيات', + 'icon_class' => 'رمز لاستخدامه لهذا الجدول', + 'icon_hint' => 'رمز (اختياري) استخدم', + 'icon_hint2' => 'معرفات أيقونات فوياجر', + 'index' => 'فهرس', + 'input_type' => 'نوع الإدخال', + 'key' => 'مفتاح', + 'model_class' => 'اسم فئة النموذج Model Class', + 'model_name' => 'اسم النموذج Model', + 'model_name_ph' => 'مثال. \App\Models\User, إذا تركت فارغة ستستخدم اسم الجدول', + 'name_warning' => 'يرجى تسمية العمود قبل إضافة فهرس', + 'no_composites_warning' => 'يحتوي هذا الجدول على فهارس مركبة. يرجى ملاحظة أنها غير معتمدة في الوقت الراهن. كن حذرا عند محاولة إضافة / إزالة الفهارس.', + 'null' => 'Null', + 'optional_details' => 'تفاصيل اختيارية', + 'primary' => 'اساسي Primary', + 'server_pagination' => 'ترقيم الصفحات من جانب الخادم', + 'success_create_table' => 'تم إنشاء الجدول :table بنجاح', + 'success_created_bread' => 'تم إنشاء BREAD بنجاح', + 'success_delete_table' => 'تم حذف الجدول :table بنجاح', + 'success_remove_bread' => 'تم إزالة ال BREAD من :datatype بنجاح', + 'success_update_bread' => 'تم تحديث ال BREAD الخاصة ب :datatype بنجاح', + 'success_update_table' => 'تم تحديث الدول :table بنجاح', + 'table_actions' => 'إجراءات الجدول', + 'table_columns' => 'أعمدة الجدول', + 'table_has_index' => 'يحتوي الجدول بالفعل على فهرس أساسي.', + 'table_name' => 'اسم الجدول', + 'table_no_columns' => 'لا يحتوي الجدول على أعمدة ...', + 'type' => 'النوع', + 'type_not_supported' => 'هذا النوع غير معتمد', + 'unique' => 'فريد', + 'unknown_type' => 'نوع غير معروف', + 'update_table' => 'تحديث الجدول', + 'url_slug' => 'رابط URL (يجب أن يكون فريد)', + 'url_slug_ph' => 'رابط URL (مثل posts)', + 'visibility' => 'الظهور', ], 'dimmer' => [ - 'page' => 'صفحة|صفحات', + 'page' => 'صفحة|صفحات', 'page_link_text' => 'عرض جميع الصفحات', - 'page_text' => 'لديك :count :string في قاعدة البيانات الخاصة بك. انقر على الزر أدناه لعرض جميع الصفحات.', - 'post' => 'مقالة|مقالات', + 'page_text' => 'لديك :count :string في قاعدة البيانات الخاصة بك. انقر على الزر أدناه لعرض جميع الصفحات.', + 'post' => 'مقالة|مقالات', 'post_link_text' => 'عرض جميع المقالات', - 'post_text' => 'لديك :count :string في قاعدة البيانات الخاصة بك. انقر على الزر أدناه لعرض جميع المقالات.', - 'user' => 'عضو|أعضاء', + 'post_text' => 'لديك :count :string في قاعدة البيانات الخاصة بك. انقر على الزر أدناه لعرض جميع المقالات.', + 'user' => 'عضو|أعضاء', 'user_link_text' => 'عرض جميع المستخدمين', - 'user_text' => 'لديك :count :string في قاعدة البيانات الخاصة بك. انقر على الزر أدناه لعرض جميع المستخدمين.', + 'user_text' => 'لديك :count :string في قاعدة البيانات الخاصة بك. انقر على الزر أدناه لعرض جميع المستخدمين.', ], 'form' => [ - 'field_password_keep' => 'اتركه فارغ لعدم التعديل', + 'field_password_keep' => 'اتركه فارغ لعدم التعديل', 'field_select_dd_relationship' => 'تأكد من إعداد العلاقة المناسبة في الطريقة :method الخاصة بالمعرف :class', - 'type_checkbox' => 'مربع اختيار Checkbox', - 'type_codeeditor' => 'محرر أكواد Code Editor', - 'type_file' => 'ملف', - 'type_image' => 'صورة', - 'type_radiobutton' => 'زر اختيار من متعدد Radio Button', - 'type_richtextbox' => 'مربع نص منسق Rich Textbox', - 'type_selectdropdown' => 'قائمة تحديد منسدلة Dropdown', - 'type_textarea' => 'منطقة نص Text Area', - 'type_textbox' => 'مربع نص Text Box', + 'type_checkbox' => 'مربع اختيار Checkbox', + 'type_codeeditor' => 'محرر أكواد Code Editor', + 'type_file' => 'ملف', + 'type_image' => 'صورة', + 'type_radiobutton' => 'زر اختيار من متعدد Radio Button', + 'type_richtextbox' => 'مربع نص منسق Rich Textbox', + 'type_selectdropdown' => 'قائمة تحديد منسدلة Dropdown', + 'type_textarea' => 'منطقة نص Text Area', + 'type_textbox' => 'مربع نص Text Box', ], // DataTable translations from: https://github.com/DataTables/Plugins/tree/master/i18n 'datatable' => [ - 'sEmptyTable' => 'لا تتوفر بيانات في هذا الجدول', - 'sInfo' => 'عرض من _START_ إلى _END_ من مجموع _TOTAL_ عنصر', - 'sInfoEmpty' => 'عرض عناصر 0 إلى 0 من مجموع 0 عنصر', - 'sInfoFiltered' => '(تمت تصفية من مجموع _MAX_ عناصر)', - 'sInfoPostFix' => '', - 'sInfoThousands' => ',', - 'sLengthMenu' => 'عرض _MENU_ عنصر', + 'sEmptyTable' => 'لا تتوفر بيانات في هذا الجدول', + 'sInfo' => 'عرض من _START_ إلى _END_ من مجموع _TOTAL_ عنصر', + 'sInfoEmpty' => 'عرض عناصر 0 إلى 0 من مجموع 0 عنصر', + 'sInfoFiltered' => '(تمت تصفية من مجموع _MAX_ عناصر)', + 'sInfoPostFix' => '', + 'sInfoThousands' => ',', + 'sLengthMenu' => 'عرض _MENU_ عنصر', 'sLoadingRecords' => 'جار التحميل...', - 'sProcessing' => 'جار المعالجة...', - 'sSearch' => 'بحث:', - 'sZeroRecords' => 'لم يتم العثور على سجلات مطابقة', - 'oPaginate' => [ - 'sFirst' => 'الأول', - 'sLast' => 'الأخير', - 'sNext' => 'التالي', + 'sProcessing' => 'جار المعالجة...', + 'sSearch' => 'بحث:', + 'sZeroRecords' => 'لم يتم العثور على سجلات مطابقة', + 'oPaginate' => [ + 'sFirst' => 'الأول', + 'sLast' => 'الأخير', + 'sNext' => 'التالي', 'sPrevious' => 'السابق', ], 'oAria' => [ - 'sSortAscending' => ': فعل لترتيب العمود تصاعديا', + 'sSortAscending' => ': فعل لترتيب العمود تصاعديا', 'sSortDescending' => ': فعل لترتيب العمود تنازليا', ], ], 'theme' => [ - 'footer_copyright' => 'صنعت بـ بواسطة', + 'footer_copyright' => 'صنعت بـ بواسطة', 'footer_copyright2' => 'مصنوعة باستخدام الكثير من القهوة والشاي بالنعناع', ], 'json' => [ - 'invalid' => 'Json غير صالح', - 'invalid_message' => 'يبدو أنك عرضت بعض Json الغير صالحة.', - 'valid' => 'Json صالح', + 'invalid' => 'Json غير صالح', + 'invalid_message' => 'يبدو أنك عرضت بعض Json الغير صالحة.', + 'valid' => 'Json صالح', 'validation_errors' => 'أخطاء أثناء التحقق', ], 'analytics' => [ - 'by_pageview' => 'حسب المشاهدات', - 'by_sessions' => 'حسب الجلسات', - 'by_users' => 'حسب المستخدمين', - 'no_client_id' => 'لعرض التحليلات، ستحتاج إلى الحصول على معرف عميل google analytics وإضافته إلى إعدادات المفتاح google_analytics_client_id . احصل على المفتاح من لوحة تحكم مطوري جوجل:', - 'set_view' => 'حدد طريقة العرض', - 'this_vs_last_week' => 'هذا الأسبوع ضد الأسبوع الماضي', - 'this_vs_last_year' => 'هذا العام ضد العام الماضي', - 'top_browsers' => 'أفضل المتصفحات', - 'top_countries' => 'أعلى البلدان', + 'by_pageview' => 'حسب المشاهدات', + 'by_sessions' => 'حسب الجلسات', + 'by_users' => 'حسب المستخدمين', + 'no_client_id' => 'لعرض التحليلات، ستحتاج إلى الحصول على معرف عميل google analytics وإضافته إلى إعدادات المفتاح google_analytics_client_id . احصل على المفتاح من لوحة تحكم مطوري جوجل:', + 'set_view' => 'حدد طريقة العرض', + 'this_vs_last_week' => 'هذا الأسبوع ضد الأسبوع الماضي', + 'this_vs_last_year' => 'هذا العام ضد العام الماضي', + 'top_browsers' => 'أفضل المتصفحات', + 'top_countries' => 'أعلى البلدان', 'various_visualizations' => 'تصورات مختلفة', ], 'error' => [ - 'symlink_created_text' => 'لقد أنشأنا للتو الاختصار symlink المفقود.', - 'symlink_created_title' => 'تم إنشاء الاختصار المفقود symlink إلى storage', - 'symlink_failed_text' => 'فشلنا في إنشاء الاختصار المفقود في تطبيقك. يبدو أن مزود خدمة الاستضافة لديك لا يدعمه.', - 'symlink_failed_title' => 'تعذر إنشاء الاختصار المفقود symlink إلى مجلد التخزين', + 'symlink_created_text' => 'لقد أنشأنا للتو الاختصار symlink المفقود.', + 'symlink_created_title' => 'تم إنشاء الاختصار المفقود symlink إلى storage', + 'symlink_failed_text' => 'فشلنا في إنشاء الاختصار المفقود في تطبيقك. يبدو أن مزود خدمة الاستضافة لديك لا يدعمه.', + 'symlink_failed_title' => 'تعذر إنشاء الاختصار المفقود symlink إلى مجلد التخزين', 'symlink_missing_button' => 'إصلاح المشكلة', - 'symlink_missing_text' => 'لم نتمكن من العثور على اختصار symlink الى مجلد التخزين. قد يتسبب هذا في حدوث مشكلات في تحميل ملفات الوسائط من المتصفح.', - 'symlink_missing_title' => 'الاختصار symlink إلى مجلد التخزين مفقود', + 'symlink_missing_text' => 'لم نتمكن من العثور على اختصار symlink الى مجلد التخزين. قد يتسبب هذا في حدوث مشكلات في تحميل ملفات الوسائط من المتصفح.', + 'symlink_missing_title' => 'الاختصار symlink إلى مجلد التخزين مفقود', ], ]; diff --git a/lang/de/voyager.php b/lang/de/voyager.php index f914a2b25..941ccacef 100644 --- a/lang/de/voyager.php +++ b/lang/de/voyager.php @@ -9,145 +9,145 @@ ], 'generic' => [ - 'action' => 'Aktion', - 'actions' => 'Aktionen', - 'add' => 'Hinzufügen', - 'add_folder' => 'Ordner Hinzufügen', - 'add_new' => 'Neu Hinzufügen', - 'all_done' => 'Alles erledigt', - 'are_you_sure' => 'Sind Sie sicher', - 'are_you_sure_delete' => 'Sind Sie sicher dass sie löschen möchten', - 'auto_increment' => 'Automatische Werterhöhung', - 'browse' => 'Browse', - 'builder' => 'Builder', - 'bulk_delete' => 'Massenlöschung', - 'bulk_delete_confirm' => 'Ja, alle löschen', - 'bulk_delete_nothing' => 'Sie haben nichts ausgewählt', - 'cancel' => 'Abbruch', - 'choose_type' => 'Typ auswählen', - 'click_here' => 'Hier Klicken', - 'close' => 'Schließen', - 'compass' => 'Kompass', - 'created_at' => 'Angelegt', - 'custom' => 'Custom', - 'dashboard' => 'Dashboard', - 'database' => 'Datenbank', - 'default' => 'Defaultwert', - 'delete' => 'Löschen', - 'delete_confirm' => 'Ja, Löschen!', - 'delete_question' => 'Wirklich Löschen', - 'delete_this_confirm' => 'Ja, Löschen', - 'deselect_all' => 'Alles abwählen', - 'download' => 'Herunterladen', - 'edit' => 'Editieren', - 'email' => 'E-Mail', - 'error_deleting' => 'Es gab ein Problem beim Versuch dies zu Löschen', - 'exception' => 'Exception', - 'featured' => 'Featured', - 'field_does_not_exist' => 'Feld existiert nicht', - 'how_to_use' => 'Bedieneranleitung', - 'index' => 'Index', - 'internal_error' => 'Interner Fehler', - 'items' => 'Element(e)', - 'keep_sidebar_open' => 'Yarr! Anker werfen! (und Sidebar geöffnet lassen)', - 'key' => 'Key', - 'last_modified' => 'Zuletzt modifiziert', - 'length' => 'Länge', - 'login' => 'Login', - 'media' => 'Medien', - 'menu_builder' => 'Menü Editor', - 'move' => 'Verschieben', - 'name' => 'Name', - 'new' => 'Neu', - 'no' => 'Nein', - 'no_thanks' => 'Nein Danke', - 'not_null' => 'Not Null', - 'options' => 'Optionen', - 'password' => 'Passwort', - 'permissions' => 'Rechte', - 'profile' => 'Profil', - 'public_url' => 'Öffentliche URL', - 'read' => 'Lesen', - 'rename' => 'Umbenennen', - 'required' => 'Notwendig', - 'return_to_list' => 'Zurück zur Liste', - 'route' => 'Route', - 'save' => 'Speichern', - 'search' => 'Suchen', - 'select_all' => 'Alles Auswählen', - 'select_group' => 'Bestehende Gruppe auswählen oder neue Gruppe hinzufügen', - 'settings' => 'Einstellungen', - 'showing_entries' => 'Zeige :from bis :to von :all Eintrag|Zeige :from bis :to von :all Einträgen', - 'submit' => 'Absenden', + 'action' => 'Aktion', + 'actions' => 'Aktionen', + 'add' => 'Hinzufügen', + 'add_folder' => 'Ordner Hinzufügen', + 'add_new' => 'Neu Hinzufügen', + 'all_done' => 'Alles erledigt', + 'are_you_sure' => 'Sind Sie sicher', + 'are_you_sure_delete' => 'Sind Sie sicher dass sie löschen möchten', + 'auto_increment' => 'Automatische Werterhöhung', + 'browse' => 'Browse', + 'builder' => 'Builder', + 'bulk_delete' => 'Massenlöschung', + 'bulk_delete_confirm' => 'Ja, alle löschen', + 'bulk_delete_nothing' => 'Sie haben nichts ausgewählt', + 'cancel' => 'Abbruch', + 'choose_type' => 'Typ auswählen', + 'click_here' => 'Hier Klicken', + 'close' => 'Schließen', + 'compass' => 'Kompass', + 'created_at' => 'Angelegt', + 'custom' => 'Custom', + 'dashboard' => 'Dashboard', + 'database' => 'Datenbank', + 'default' => 'Defaultwert', + 'delete' => 'Löschen', + 'delete_confirm' => 'Ja, Löschen!', + 'delete_question' => 'Wirklich Löschen', + 'delete_this_confirm' => 'Ja, Löschen', + 'deselect_all' => 'Alles abwählen', + 'download' => 'Herunterladen', + 'edit' => 'Editieren', + 'email' => 'E-Mail', + 'error_deleting' => 'Es gab ein Problem beim Versuch dies zu Löschen', + 'exception' => 'Exception', + 'featured' => 'Featured', + 'field_does_not_exist' => 'Feld existiert nicht', + 'how_to_use' => 'Bedieneranleitung', + 'index' => 'Index', + 'internal_error' => 'Interner Fehler', + 'items' => 'Element(e)', + 'keep_sidebar_open' => 'Yarr! Anker werfen! (und Sidebar geöffnet lassen)', + 'key' => 'Key', + 'last_modified' => 'Zuletzt modifiziert', + 'length' => 'Länge', + 'login' => 'Login', + 'media' => 'Medien', + 'menu_builder' => 'Menü Editor', + 'move' => 'Verschieben', + 'name' => 'Name', + 'new' => 'Neu', + 'no' => 'Nein', + 'no_thanks' => 'Nein Danke', + 'not_null' => 'Not Null', + 'options' => 'Optionen', + 'password' => 'Passwort', + 'permissions' => 'Rechte', + 'profile' => 'Profil', + 'public_url' => 'Öffentliche URL', + 'read' => 'Lesen', + 'rename' => 'Umbenennen', + 'required' => 'Notwendig', + 'return_to_list' => 'Zurück zur Liste', + 'route' => 'Route', + 'save' => 'Speichern', + 'search' => 'Suchen', + 'select_all' => 'Alles Auswählen', + 'select_group' => 'Bestehende Gruppe auswählen oder neue Gruppe hinzufügen', + 'settings' => 'Einstellungen', + 'showing_entries' => 'Zeige :from bis :to von :all Eintrag|Zeige :from bis :to von :all Einträgen', + 'submit' => 'Absenden', 'successfully_added_new' => 'Erfolgreich neu hinzugefügt', - 'successfully_deleted' => 'Erfolgreich gelöscht', - 'successfully_updated' => 'Erfolgreich Editiert', - 'timestamp' => 'Zeitstempel', - 'title' => 'Titel', - 'type' => 'Typ', - 'unsigned' => 'Unsigned', - 'unstick_sidebar' => 'Sidebar ablösen', - 'update' => 'Aktualisierung', - 'update_failed' => 'Aktualisierung fehlgeschlagen', - 'upload' => 'Upload', - 'url' => 'URL', - 'view' => 'Anzeige', - 'viewing' => 'Anzeigen', - 'yes' => 'Ja', - 'yes_please' => 'Ja, Bitte', + 'successfully_deleted' => 'Erfolgreich gelöscht', + 'successfully_updated' => 'Erfolgreich Editiert', + 'timestamp' => 'Zeitstempel', + 'title' => 'Titel', + 'type' => 'Typ', + 'unsigned' => 'Unsigned', + 'unstick_sidebar' => 'Sidebar ablösen', + 'update' => 'Aktualisierung', + 'update_failed' => 'Aktualisierung fehlgeschlagen', + 'upload' => 'Upload', + 'url' => 'URL', + 'view' => 'Anzeige', + 'viewing' => 'Anzeigen', + 'yes' => 'Ja', + 'yes_please' => 'Ja, Bitte', ], 'login' => [ - 'loggingin' => 'Einloggen', + 'loggingin' => 'Einloggen', 'signin_below' => 'Unten anmelden:', - 'welcome' => 'Willkommen bei Voyager. Der fehlende Admin für Laravel', + 'welcome' => 'Willkommen bei Voyager. Der fehlende Admin für Laravel', ], 'profile' => [ - 'avatar' => 'Avatar', - 'edit' => 'Mein Profil Editieren', - 'edit_user' => 'Benutzer Editieren', - 'password' => 'Passwort', + 'avatar' => 'Avatar', + 'edit' => 'Mein Profil Editieren', + 'edit_user' => 'Benutzer Editieren', + 'password' => 'Passwort', 'password_hint' => 'Leer lassen um das Bisherige zu behalten', - 'role' => 'Rolle', - 'user_role' => 'Benutzerrolle', + 'role' => 'Rolle', + 'user_role' => 'Benutzerrolle', ], 'settings' => [ - 'usage_help' => 'Sie können den Wert jeder Einstellung überall auf der Seite erhalten durch den Aufruf', - 'save' => 'Einstellungen Speichern', - 'new' => 'Neue Einstellung', - 'help_name' => 'Einstellung Name Beispiel: Admin Titel', - 'help_key' => 'Einstellung Schlüssel Beispiel: admin_title', - 'help_option' => '(optional, betrifft lediglich bestimmte Typen wie Dropdown Box oder Radio Button)', - 'add_new' => 'Neue Einstellung Hinzufügen', - 'delete_question' => 'Wollen Sie die Einstellung :setting wirklich Löschen?', - 'delete_confirm' => 'Ja, diese Einstellung Löschen', + 'usage_help' => 'Sie können den Wert jeder Einstellung überall auf der Seite erhalten durch den Aufruf', + 'save' => 'Einstellungen Speichern', + 'new' => 'Neue Einstellung', + 'help_name' => 'Einstellung Name Beispiel: Admin Titel', + 'help_key' => 'Einstellung Schlüssel Beispiel: admin_title', + 'help_option' => '(optional, betrifft lediglich bestimmte Typen wie Dropdown Box oder Radio Button)', + 'add_new' => 'Neue Einstellung Hinzufügen', + 'delete_question' => 'Wollen Sie die Einstellung :setting wirklich Löschen?', + 'delete_confirm' => 'Ja, diese Einstellung Löschen', 'successfully_created' => 'Einstellungen erfolgreich erstellt', - 'successfully_saved' => 'Einstellungen erfolgreich gespeichert', + 'successfully_saved' => 'Einstellungen erfolgreich gespeichert', 'successfully_deleted' => 'Einstellungen erfolgreich gelöscht', - 'already_at_top' => 'Dies ist bereits an erster Stelle der Liste', - 'already_at_bottom' => 'Dies ist bereits an letzter Stelle der Liste', - 'key_already_exists' => 'Der Schlüssel :key existiert bereits', - 'moved_order_up' => 'Einstellung :name wurde nach oben geschoben', - 'moved_order_down' => 'Einstellung :name wurde nach unten geschoben', + 'already_at_top' => 'Dies ist bereits an erster Stelle der Liste', + 'already_at_bottom' => 'Dies ist bereits an letzter Stelle der Liste', + 'key_already_exists' => 'Der Schlüssel :key existiert bereits', + 'moved_order_up' => 'Einstellung :name wurde nach oben geschoben', + 'moved_order_down' => 'Einstellung :name wurde nach unten geschoben', 'successfully_removed' => 'Wert :name wurde erfolgreich gelöscht', - 'group_general' => 'General', - 'group_admin' => 'Admin', - 'group_site' => 'Site', - 'group' => 'Gruppe', - 'help_group' => 'Diese Einstellung ist zugewiesen zu', + 'group_general' => 'General', + 'group_admin' => 'Admin', + 'group_site' => 'Site', + 'group' => 'Gruppe', + 'help_group' => 'Diese Einstellung ist zugewiesen zu', ], 'media' => [ - 'add_new_folder' => 'Neuen Ordner Hinzufügen', - 'audio_support' => 'Ihr Browser unterstützt das Audio Element nicht.', - 'create_new_folder' => 'Neuen Ordner Erstellen', + 'add_new_folder' => 'Neuen Ordner Hinzufügen', + 'audio_support' => 'Ihr Browser unterstützt das Audio Element nicht.', + 'create_new_folder' => 'Neuen Ordner Erstellen', 'delete_folder_question' => 'Das Löschen des Ordners wird alle darin enthaltenen Dateien und Ordnder löschen.', - 'destination_folder' => 'Ziel Ordner', - 'drag_drop_info' => 'Dateien mit Drag und Drop hineinziehen oder unten klicken um hochzuladen', - 'error_already_exists' => 'Es ist bereits eine Datei bzw. ein Ordner mit diesem Namen in diesem Ordner enthalten.', - 'error_creating_dir' => 'Beim Versuch das Verzeichnis Anzulegen ist ein Fehler aufgetreten. '. + 'destination_folder' => 'Ziel Ordner', + 'drag_drop_info' => 'Dateien mit Drag und Drop hineinziehen oder unten klicken um hochzuladen', + 'error_already_exists' => 'Es ist bereits eine Datei bzw. ein Ordner mit diesem Namen in diesem Ordner enthalten.', + 'error_creating_dir' => 'Beim Versuch das Verzeichnis Anzulegen ist ein Fehler aufgetreten. '. 'Stellen Sie sicher, dass Sie ausreichende Zugriffsrechte dafür haben.', 'error_deleting_file' => 'Beim Versuch diese Datei zu Löschen ist ein Fehler aufgetreten. '. 'Stellen Sie sicher, dass Sie ausreichende Zugriffsrechte dafür haben.', @@ -157,257 +157,257 @@ 'einen anderen Namen oder Löschen Sie die andere Datei.', 'error_moving' => 'Beim Versuch diese Datei bzw. Ordner zu Verschieben ist ein Fehler aufgetreten. '. 'Stellen Sie sicher, dass Sie ausreichende Zugriffsrechte dafür haben.', - 'error_uploading' => 'Hochladen Fehlgeschlagen: Unbekannter Fehler aufgetreten!', + 'error_uploading' => 'Hochladen Fehlgeschlagen: Unbekannter Fehler aufgetreten!', 'folder_exists_already' => 'Dieser Ordner existiert bereits. Bitte Löschen Sie diesen Ordner falls Sie ihn '. 'neu Anlegen möchten', - 'image_does_not_exist' => 'Bild existiert nicht', - 'image_removed' => 'Bild entfernt', - 'library' => 'Medien Bibliothek', - 'loading' => 'LADE IHRE MEDIEN DATEIEN', - 'move_file_folder' => 'Datei/Ordner Verschieben', - 'new_file_folder' => 'Datei/Ordner Anlegen', - 'new_folder_name' => 'Name des neuen Ordners', - 'no_files_here' => 'Hier sind keine Dateien vorhanden.', - 'no_files_in_folder' => 'Keine Dateien in diesem Ordner.', - 'nothing_selected' => 'Keine Datei oder Ordner angewählt', - 'rename_file_folder' => 'Datei/Ordner Umbenennen', + 'image_does_not_exist' => 'Bild existiert nicht', + 'image_removed' => 'Bild entfernt', + 'library' => 'Medien Bibliothek', + 'loading' => 'LADE IHRE MEDIEN DATEIEN', + 'move_file_folder' => 'Datei/Ordner Verschieben', + 'new_file_folder' => 'Datei/Ordner Anlegen', + 'new_folder_name' => 'Name des neuen Ordners', + 'no_files_here' => 'Hier sind keine Dateien vorhanden.', + 'no_files_in_folder' => 'Keine Dateien in diesem Ordner.', + 'nothing_selected' => 'Keine Datei oder Ordner angewählt', + 'rename_file_folder' => 'Datei/Ordner Umbenennen', 'success_uploaded_file' => 'Neue Datei erfolgreich hochgeladen!', - 'success_uploading' => 'Bild erfolgreich hochgeladen!', - 'uploading_wrong_type' => 'Fehler beim Hochladen: Nicht unterstütztes Dateiformat oder Datei zu groß '. + 'success_uploading' => 'Bild erfolgreich hochgeladen!', + 'uploading_wrong_type' => 'Fehler beim Hochladen: Nicht unterstütztes Dateiformat oder Datei zu groß '. 'zum Hochladen', 'video_support' => 'Ihr Browser unterstützt den Video Tag nicht.', ], 'menu_builder' => [ - 'color' => 'Farbe in RGB oder hex (optional)', - 'color_ph' => 'Farbe (z. B. #ffffff oder rgb(255, 255, 255)', - 'create_new_item' => 'Erstelle einen neues Menü Element', - 'delete_item_confirm' => 'Ja, Lösche dieses Menü Element', + 'color' => 'Farbe in RGB oder hex (optional)', + 'color_ph' => 'Farbe (z. B. #ffffff oder rgb(255, 255, 255)', + 'create_new_item' => 'Erstelle einen neues Menü Element', + 'delete_item_confirm' => 'Ja, Lösche dieses Menü Element', 'delete_item_question' => 'Sind Sie sicher dass Sie dieses Menü Element Löschen möchten?', - 'drag_drop_info' => 'Sie können die Reihenfolge der untenstehenden Menü Elemente durch Drag und Drop '. + 'drag_drop_info' => 'Sie können die Reihenfolge der untenstehenden Menü Elemente durch Drag und Drop '. 'um Ihre Reihenfolge zu verändern.', - 'dynamic_route' => 'Dynamische Route', - 'edit_item' => 'Menü Element Editieren', - 'icon_class' => 'Font Icon CSS-Klasse für das Menü Element (Benutze ', - 'icon_class2' => 'Voyager Font CSS-Klasse)', - 'icon_class_ph' => 'Icon CSS-Klasse (optional)', - 'item_route' => 'Route für das Menü Element', - 'item_title' => 'Titel für das Menü Element', - 'link_type' => 'Link Typ', - 'new_menu_item' => 'Neues Menü Element', - 'open_in' => 'Öffnen in', - 'open_new' => 'Neuem Tab/Fenster', - 'open_same' => 'Selber Tab/Fenster', - 'route_parameter' => 'Route Parameter (falls vorhanden)', - 'static_url' => 'Statische URL', + 'dynamic_route' => 'Dynamische Route', + 'edit_item' => 'Menü Element Editieren', + 'icon_class' => 'Font Icon CSS-Klasse für das Menü Element (Benutze ', + 'icon_class2' => 'Voyager Font CSS-Klasse)', + 'icon_class_ph' => 'Icon CSS-Klasse (optional)', + 'item_route' => 'Route für das Menü Element', + 'item_title' => 'Titel für das Menü Element', + 'link_type' => 'Link Typ', + 'new_menu_item' => 'Neues Menü Element', + 'open_in' => 'Öffnen in', + 'open_new' => 'Neuem Tab/Fenster', + 'open_same' => 'Selber Tab/Fenster', + 'route_parameter' => 'Route Parameter (falls vorhanden)', + 'static_url' => 'Statische URL', 'successfully_created' => 'Neues Menü Element erfolgreich erstellt.', 'successfully_deleted' => 'Menü Element erfolgreich gelöscht.', 'successfully_updated' => 'Menü Element erfolgreich aktualisiert.', - 'updated_order' => 'Menü Reihenfolge erfolgreich aktualisiert.', - 'url' => 'URL des Menü Elements', - 'usage_hint' => 'Sie können ein Menü überall auf der Seite ausgeben durch den Aufruf|'. + 'updated_order' => 'Menü Reihenfolge erfolgreich aktualisiert.', + 'url' => 'URL des Menü Elements', + 'usage_hint' => 'Sie können ein Menü überall auf der Seite ausgeben durch den Aufruf|'. 'Sie können dieses Menü überall auf der Seite ausgeben durch den Aufruf', ], 'post' => [ - 'category' => 'Post Kategorie', - 'content' => 'Post Inhalt', - 'details' => 'Post Details', - 'excerpt' => 'Excerpt Kurzbeschreibung dieses Posts', - 'image' => 'Post Bild', + 'category' => 'Post Kategorie', + 'content' => 'Post Inhalt', + 'details' => 'Post Details', + 'excerpt' => 'Excerpt Kurzbeschreibung dieses Posts', + 'image' => 'Post Bild', 'meta_description' => 'Meta Beschreibung', - 'meta_keywords' => 'Meta Keywords', - 'new' => 'Post Anlegen', - 'seo_content' => 'SEO Content', - 'seo_title' => 'SEO Titel', - 'slug' => 'URL Slug', - 'status' => 'Post Status', - 'status_draft' => 'Entwurf', - 'status_pending' => 'Warten auf Freigabe', + 'meta_keywords' => 'Meta Keywords', + 'new' => 'Post Anlegen', + 'seo_content' => 'SEO Content', + 'seo_title' => 'SEO Titel', + 'slug' => 'URL Slug', + 'status' => 'Post Status', + 'status_draft' => 'Entwurf', + 'status_pending' => 'Warten auf Freigabe', 'status_published' => 'veröffentlicht', - 'title' => 'Post Titel', - 'title_sub' => 'Der Titel des Posts', - 'update' => 'Post Aktualisieren', + 'title' => 'Post Titel', + 'title_sub' => 'Der Titel des Posts', + 'update' => 'Post Aktualisieren', ], 'database' => [ - 'add_bread' => 'BREAD zu Tabelle Hinzufügen', - 'add_new_column' => 'Neue Spalte Hinzufügen', - 'add_softdeletes' => 'Soft Deletes Hinzufügen', - 'add_timestamps' => 'Zeitstempel Hinzufügen', - 'already_exists' => 'existiert bereits', - 'already_exists_table' => 'Tabelle :table existiert bereits', - 'bread_crud_actions' => 'BREAD/CRUD Aktionen', - 'bread_info' => 'BREAD Info', - 'browse_bread' => 'BREAD ansehen', - 'column' => 'Spalte', - 'composite_warning' => 'Warnung: Diese Spalte ist Teil eines zusammengesetzten indexes', - 'controller_name' => 'Controller Name', - 'controller_name_hint' => 'z. B. PageController, falls leer gelassen wird der BREAD Controller verwendet', - 'create_bread_for_table' => 'BREAD Erstellen für :table Tabelle', - 'create_migration' => 'Migration Erstellen für diese Tabelle?', - 'create_model_table' => 'Model für diese Tabelle erstellen?', - 'create_new_table' => 'Neue Tabelle Erstellen', - 'create_your_new_table' => 'Erstellen Sie Ihre neue Tabelle', - 'default' => 'Default', - 'delete_bread' => 'BREAD Löschen', + 'add_bread' => 'BREAD zu Tabelle Hinzufügen', + 'add_new_column' => 'Neue Spalte Hinzufügen', + 'add_softdeletes' => 'Soft Deletes Hinzufügen', + 'add_timestamps' => 'Zeitstempel Hinzufügen', + 'already_exists' => 'existiert bereits', + 'already_exists_table' => 'Tabelle :table existiert bereits', + 'bread_crud_actions' => 'BREAD/CRUD Aktionen', + 'bread_info' => 'BREAD Info', + 'browse_bread' => 'BREAD ansehen', + 'column' => 'Spalte', + 'composite_warning' => 'Warnung: Diese Spalte ist Teil eines zusammengesetzten indexes', + 'controller_name' => 'Controller Name', + 'controller_name_hint' => 'z. B. PageController, falls leer gelassen wird der BREAD Controller verwendet', + 'create_bread_for_table' => 'BREAD Erstellen für :table Tabelle', + 'create_migration' => 'Migration Erstellen für diese Tabelle?', + 'create_model_table' => 'Model für diese Tabelle erstellen?', + 'create_new_table' => 'Neue Tabelle Erstellen', + 'create_your_new_table' => 'Erstellen Sie Ihre neue Tabelle', + 'default' => 'Default', + 'delete_bread' => 'BREAD Löschen', 'delete_bread_before_table' => 'Sie müssen zuerst das BREAD von dieser Tabelle Entfernen '. 'bevor Sie die Tabelle Löschen können.', - 'delete_table_bread_conf' => 'Ja, BREAD Entfernen', + 'delete_table_bread_conf' => 'Ja, BREAD Entfernen', 'delete_table_bread_quest' => 'Sind Sie sicher, dass Sie das BREAD für Tabelle :table Löschen möchten?', - 'delete_table_confirm' => 'Ja, diese Tabelle Löschen', - 'delete_table_question' => 'Sind Sie sicher, dass Sie die Tabelle :table Löschen möchten?', - 'description' => 'Beschreibung', - 'display_name' => 'Anzeigename', - 'display_name_plural' => 'Anzeigename (Plural)', - 'display_name_singular' => 'Anzeigename (Singular)', - 'edit_bread' => 'BREAD Bearbeiten', - 'edit_bread_for_table' => 'Bearbeite BREAD für Tabelle :table', - 'edit_rows' => 'Bearbeite die Zeilen für untenstehende Tabelle :table', - 'edit_table' => 'Bearbeite die untenstehende Tabelle :table', - 'edit_table_not_exist' => 'Die Tabelle welche Sie Bearbeiten möchten existiert nicht', - 'error_creating_bread' => 'Es ist ein Fehler aufgetreten beim Versuch dieses BREAD anzulegen', - 'error_removing_bread' => 'Es ist ein Fehler aufgetreten beim Versuch dieses BREAD zu Löschen', - 'error_updating_bread' => 'Es ist ein Fehler aufgetreten beim Versuch dieses BREAD zu Aktualisieren', - 'extra' => 'Extra', - 'field' => 'Feld', - 'field_safe_failed' => 'Konnte Feld :field nicht speichern, Änderungen zurückgerollt!', - 'generate_permissions' => 'Zugriffsrechte Generieren', - 'icon_class' => 'Icon CSS-Klasse für diese Tabelle', - 'icon_hint' => 'Icon (optional) Benutze', - 'icon_hint2' => 'Voyager Font CSS-Klasse', - 'index' => 'INDEX', - 'input_type' => 'Input Typ', - 'key' => 'Key', - 'model_class' => 'Name der Model Klasse', - 'model_name' => 'Model Name', - 'model_name_ph' => 'z. B. \App\Models\User, falls leer gelassen wird versucht den Namen der Tabelle '. + 'delete_table_confirm' => 'Ja, diese Tabelle Löschen', + 'delete_table_question' => 'Sind Sie sicher, dass Sie die Tabelle :table Löschen möchten?', + 'description' => 'Beschreibung', + 'display_name' => 'Anzeigename', + 'display_name_plural' => 'Anzeigename (Plural)', + 'display_name_singular' => 'Anzeigename (Singular)', + 'edit_bread' => 'BREAD Bearbeiten', + 'edit_bread_for_table' => 'Bearbeite BREAD für Tabelle :table', + 'edit_rows' => 'Bearbeite die Zeilen für untenstehende Tabelle :table', + 'edit_table' => 'Bearbeite die untenstehende Tabelle :table', + 'edit_table_not_exist' => 'Die Tabelle welche Sie Bearbeiten möchten existiert nicht', + 'error_creating_bread' => 'Es ist ein Fehler aufgetreten beim Versuch dieses BREAD anzulegen', + 'error_removing_bread' => 'Es ist ein Fehler aufgetreten beim Versuch dieses BREAD zu Löschen', + 'error_updating_bread' => 'Es ist ein Fehler aufgetreten beim Versuch dieses BREAD zu Aktualisieren', + 'extra' => 'Extra', + 'field' => 'Feld', + 'field_safe_failed' => 'Konnte Feld :field nicht speichern, Änderungen zurückgerollt!', + 'generate_permissions' => 'Zugriffsrechte Generieren', + 'icon_class' => 'Icon CSS-Klasse für diese Tabelle', + 'icon_hint' => 'Icon (optional) Benutze', + 'icon_hint2' => 'Voyager Font CSS-Klasse', + 'index' => 'INDEX', + 'input_type' => 'Input Typ', + 'key' => 'Key', + 'model_class' => 'Name der Model Klasse', + 'model_name' => 'Model Name', + 'model_name_ph' => 'z. B. \App\Models\User, falls leer gelassen wird versucht den Namen der Tabelle '. 'zu verwenden', 'name_warning' => 'Sie müssen einen Namen für die Spalte vergeben, '. ' bevor Sie einen Index hinzufügen', 'no_composites_warning' => 'Hinweis: Diese Tabelle hat zusammengesetzte Indexe. '. 'Diese werden momentan nicht unterstützt. '. 'Seien Sie vorsichtig beim Hinzufügen/Ändern von Indexen.', - 'null' => 'Null', + 'null' => 'Null', 'optional_details' => 'Optionale Details', - 'policy_class' => 'Policy Klassenname', - 'policy_name' => 'Policy Name', - 'policy_name_ph' => 'Bspw. \App\Policies\UserPolicy, falls leer gelassen wird versucht '. + 'policy_class' => 'Policy Klassenname', + 'policy_name' => 'Policy Name', + 'policy_name_ph' => 'Bspw. \App\Policies\UserPolicy, falls leer gelassen wird versucht '. 'den Default Wert zu Verwenden.', - 'primary' => 'PRIMARY', - 'server_pagination' => 'Serverseitige Pagination', - 'success_create_table' => 'Tabelle :table erfolgreich erstellt', + 'primary' => 'PRIMARY', + 'server_pagination' => 'Serverseitige Pagination', + 'success_create_table' => 'Tabelle :table erfolgreich erstellt', 'success_created_bread' => 'Neues BREAD erfolgreich erstellt', - 'success_delete_table' => 'Tabelle :table erfolgreich erstellt', - 'success_remove_bread' => 'BREAD erfolgreich von :datatype entfernt', - 'success_update_bread' => ':datatype BREAD erfolgreich aktualisiert', - 'success_update_table' => 'Tabelle :table erfolgreich aktualisiert', - 'table_actions' => 'Tabellen Aktionen', - 'table_columns' => 'Tabellen Spalten', - 'table_has_index' => 'Die Tabelle hat bereits einen primären Index.', - 'table_name' => 'Tabellenname', - 'table_no_columns' => 'Die Tabelle hat keine Spalten...', - 'type' => 'Typ', - 'type_not_supported' => 'Dieser Typ wird nicht unterstützt', - 'unique' => 'UNIQUE', - 'unknown_type' => 'Unbekannter Typ', - 'update_table' => 'Table Aktualisieren', - 'url_slug' => 'URL Slug (muss unique sein)', - 'url_slug_ph' => 'URL slug (z. B. posts)', - 'visibility' => 'Sichtbarkeit', + 'success_delete_table' => 'Tabelle :table erfolgreich erstellt', + 'success_remove_bread' => 'BREAD erfolgreich von :datatype entfernt', + 'success_update_bread' => ':datatype BREAD erfolgreich aktualisiert', + 'success_update_table' => 'Tabelle :table erfolgreich aktualisiert', + 'table_actions' => 'Tabellen Aktionen', + 'table_columns' => 'Tabellen Spalten', + 'table_has_index' => 'Die Tabelle hat bereits einen primären Index.', + 'table_name' => 'Tabellenname', + 'table_no_columns' => 'Die Tabelle hat keine Spalten...', + 'type' => 'Typ', + 'type_not_supported' => 'Dieser Typ wird nicht unterstützt', + 'unique' => 'UNIQUE', + 'unknown_type' => 'Unbekannter Typ', + 'update_table' => 'Table Aktualisieren', + 'url_slug' => 'URL Slug (muss unique sein)', + 'url_slug_ph' => 'URL slug (z. B. posts)', + 'visibility' => 'Sichtbarkeit', ], 'dimmer' => [ - 'page' => 'Seite|Seiten', + 'page' => 'Seite|Seiten', 'page_link_text' => 'Alle Seiten Anzeigen', - 'page_text' => 'Sie haben:count :string in Ihrer Datenbank. Klicken Sie auf untenstehenden Button '. + 'page_text' => 'Sie haben:count :string in Ihrer Datenbank. Klicken Sie auf untenstehenden Button '. 'um alle Seiten zu sehen.', - 'post' => 'Post|Posts', + 'post' => 'Post|Posts', 'post_link_text' => 'Alle Posts Anzeigen', - 'post_text' => 'Sie haben :count :string in Ihrer Datenbank. Klicken Sie auf untenstehenden Button ', - 'um alle Posts zu sehen.', - 'user' => 'Benutzer|Benutzer', + 'post_text' => 'Sie haben :count :string in Ihrer Datenbank. Klicken Sie auf untenstehenden Button ', + 'um alle Posts zu sehen.', + 'user' => 'Benutzer|Benutzer', 'user_link_text' => 'Alle Benutzer Anzeigen', - 'user_text' => 'Sie haben :count :string in Ihrer Datenbank. Klicken Sie auf untenstehenden Button ', - 'um alle Benutzer zu sehen.', + 'user_text' => 'Sie haben :count :string in Ihrer Datenbank. Klicken Sie auf untenstehenden Button ', + 'um alle Benutzer zu sehen.', ], 'form' => [ - 'field_password_keep' => 'Leer lassen um das aktuelle zu Behalten', + 'field_password_keep' => 'Leer lassen um das aktuelle zu Behalten', 'field_select_dd_relationship' => 'Stellen Sie sicher, dass Sie die entsprechende Relation in der '. ':method Methode der :class Klasse setzen.', - 'type_checkbox' => 'Check Box', - 'type_codeeditor' => 'Code Editor', - 'type_file' => 'Datei', - 'type_image' => 'Bild', - 'type_radiobutton' => 'Radio Button', - 'type_richtextbox' => 'Rich Textbox', + 'type_checkbox' => 'Check Box', + 'type_codeeditor' => 'Code Editor', + 'type_file' => 'Datei', + 'type_image' => 'Bild', + 'type_radiobutton' => 'Radio Button', + 'type_richtextbox' => 'Rich Textbox', 'type_selectdropdown' => 'Select Dropdown', - 'type_textarea' => 'Text Area', - 'type_textbox' => 'Text Box', + 'type_textarea' => 'Text Area', + 'type_textbox' => 'Text Box', ], // DataTable translations from: https://github.com/DataTables/Plugins/tree/master/i18n 'datatable' => [ - 'sEmptyTable' => 'Keine Daten vorhanden in dieser Tabelle', - 'sInfo' => 'Zeige _START_ bis _END_ von _TOTAL_ Einträgen', - 'sInfoEmpty' => 'Zeige 0 von 0 Einträgen', - 'sInfoFiltered' => '(gefiltert von _MAX_ Einträgen insgesamt)', - 'sInfoPostFix' => '', - 'sInfoThousands' => '.', - 'sLengthMenu' => 'Zeige _MENU_ Einträge', + 'sEmptyTable' => 'Keine Daten vorhanden in dieser Tabelle', + 'sInfo' => 'Zeige _START_ bis _END_ von _TOTAL_ Einträgen', + 'sInfoEmpty' => 'Zeige 0 von 0 Einträgen', + 'sInfoFiltered' => '(gefiltert von _MAX_ Einträgen insgesamt)', + 'sInfoPostFix' => '', + 'sInfoThousands' => '.', + 'sLengthMenu' => 'Zeige _MENU_ Einträge', 'sLoadingRecords' => 'Laden...', - 'sProcessing' => 'Verarbeiten...', - 'sSearch' => 'Suche:', - 'sZeroRecords' => 'Keine passenden Einträge gefunden', - 'oPaginate' => [ - 'sFirst' => 'Erste', - 'sLast' => 'Letzte', - 'sNext' => 'Nächste', + 'sProcessing' => 'Verarbeiten...', + 'sSearch' => 'Suche:', + 'sZeroRecords' => 'Keine passenden Einträge gefunden', + 'oPaginate' => [ + 'sFirst' => 'Erste', + 'sLast' => 'Letzte', + 'sNext' => 'Nächste', 'sPrevious' => 'Vorige', ], 'oAria' => [ - 'sSortAscending' => ': Aktivieren um Spalte aufsteigend zu sortieren', + 'sSortAscending' => ': Aktivieren um Spalte aufsteigend zu sortieren', 'sSortDescending' => ': Aktivieren um Spalte absteigend zu sortieren', ], ], 'theme' => [ - 'footer_copyright' => 'Made with by', + 'footer_copyright' => 'Made with by', 'footer_copyright2' => 'Made with Rum und noch mehr Rum', ], 'json' => [ - 'invalid' => 'Ungültiges JSON', - 'invalid_message' => 'Es scheint Sie haben ungültiges JSON eingebracht.', - 'valid' => 'Gültiges JSON', + 'invalid' => 'Ungültiges JSON', + 'invalid_message' => 'Es scheint Sie haben ungültiges JSON eingebracht.', + 'valid' => 'Gültiges JSON', 'validation_errors' => 'Validierungsfehler', ], 'analytics' => [ - 'by_pageview' => 'nach pageview', - 'by_sessions' => 'nach sessions', - 'by_users' => 'nach users', + 'by_pageview' => 'nach pageview', + 'by_sessions' => 'nach sessions', + 'by_users' => 'nach users', 'no_client_id' => 'Um Analytics zu sehen müssen Sie im Besitz einer google Analytics client id '. 'sein und diese zu Ihren Settings hinzufügen für den Key '. 'google_analytics_client_id. '. 'Holen Sie sich Ihren Key in Ihrer Google developer console:', - 'set_view' => 'eine Ansicht wählen', - 'this_vs_last_week' => 'Diese Woche im Vergleich zu letzter Woche', - 'this_vs_last_year' => 'Dieses Jahr im Vergleich zum letzten Jahr', - 'top_browsers' => 'Top Browsers', - 'top_countries' => 'Top Länder', + 'set_view' => 'eine Ansicht wählen', + 'this_vs_last_week' => 'Diese Woche im Vergleich zu letzter Woche', + 'this_vs_last_year' => 'Dieses Jahr im Vergleich zum letzten Jahr', + 'top_browsers' => 'Top Browsers', + 'top_countries' => 'Top Länder', 'various_visualizations' => 'verschiedenartige Visualisierungen', ], 'error' => [ - 'symlink_created_text' => 'Wir haben soeben den fehlenden Symlink für Sie angelegt.', + 'symlink_created_text' => 'Wir haben soeben den fehlenden Symlink für Sie angelegt.', 'symlink_created_title' => 'Fehlenden Storage Symlink angelegt', - 'symlink_failed_text' => 'Fehlender Symlink für Ihre Applikation konnte nicht angelegt werden. '. + 'symlink_failed_text' => 'Fehlender Symlink für Ihre Applikation konnte nicht angelegt werden. '. 'Es scheint so als würde Ihr Hosting Provider dies nicht anbieten.', - 'symlink_failed_title' => 'Fehlender Storage Symlink konnte nicht angelegt werden', + 'symlink_failed_title' => 'Fehlender Storage Symlink konnte nicht angelegt werden', 'symlink_missing_button' => 'Bereinigen', - 'symlink_missing_text' => 'Wir konnten keinen Storage Symlink finden. Dies könnte zu Problemen führen '. + 'symlink_missing_text' => 'Wir konnten keinen Storage Symlink finden. Dies könnte zu Problemen führen '. 'beim Laden von Medien Dateien aus dem Browser.', 'symlink_missing_title' => 'Fehlender Storage Symlink', ], diff --git a/lang/en/voyager.php b/lang/en/voyager.php index 6018836d8..9b443fbd9 100644 --- a/lang/en/voyager.php +++ b/lang/en/voyager.php @@ -9,145 +9,145 @@ ], 'generic' => [ - 'action' => 'Action', - 'actions' => 'Actions', - 'add' => 'Add', - 'add_folder' => 'Add Folder', - 'add_new' => 'Add New', - 'all_done' => 'All done', - 'are_you_sure' => 'Are you sure', - 'are_you_sure_delete' => 'Are you sure you want to delete', - 'auto_increment' => 'Auto Increment', - 'browse' => 'Browse', - 'builder' => 'Builder', - 'bulk_delete' => 'Bulk delete', - 'bulk_delete_confirm' => 'Yes, Delete These', - 'bulk_delete_nothing' => 'You haven\'t selected anything to delete', - 'cancel' => 'Cancel', - 'choose_type' => 'Choose Type', - 'click_here' => 'Click Here', - 'close' => 'Close', - 'compass' => 'Compass', - 'created_at' => 'Created at', - 'custom' => 'Custom', - 'dashboard' => 'Dashboard', - 'database' => 'Database', - 'default' => 'Default', - 'delete' => 'Delete', - 'delete_confirm' => 'Yes, Delete it!', - 'delete_question' => 'Are you sure you want to delete this', - 'delete_this_confirm' => 'Yes, Delete This', - 'deselect_all' => 'Deselect All', - 'download' => 'Download', - 'edit' => 'Edit', - 'email' => 'E-mail', - 'error_deleting' => 'Sorry it appears there was a problem deleting this', - 'exception' => 'Exception', - 'featured' => 'Featured', - 'field_does_not_exist' => 'Field does not exist', - 'how_to_use' => 'How To Use', - 'index' => 'Index', - 'internal_error' => 'Internal error', - 'items' => 'item(s)', - 'keep_sidebar_open' => 'Yarr! Drop the anchors! (and keep the sidebar open)', - 'key' => 'Key', - 'last_modified' => 'Last modified', - 'length' => 'Length', - 'login' => 'Login', - 'media' => 'Media', - 'menu_builder' => 'Menu Builder', - 'move' => 'Move', - 'name' => 'Name', - 'new' => 'New', - 'no' => 'No', - 'no_thanks' => 'No Thanks', - 'not_null' => 'Not Null', - 'options' => 'Options', - 'password' => 'Password', - 'permissions' => 'Permissions', - 'profile' => 'Profile', - 'public_url' => 'Public URL', - 'read' => 'Read', - 'rename' => 'Rename', - 'required' => 'Required', - 'return_to_list' => 'Return to List', - 'route' => 'Route', - 'save' => 'Save', - 'search' => 'Search', - 'select_all' => 'Select All', - 'select_group' => 'Select Existing Group or Add New', - 'settings' => 'Settings', - 'showing_entries' => 'Showing :from to :to of :all entrie|Showing :from to :to of :all entries', - 'submit' => 'Submit', + 'action' => 'Action', + 'actions' => 'Actions', + 'add' => 'Add', + 'add_folder' => 'Add Folder', + 'add_new' => 'Add New', + 'all_done' => 'All done', + 'are_you_sure' => 'Are you sure', + 'are_you_sure_delete' => 'Are you sure you want to delete', + 'auto_increment' => 'Auto Increment', + 'browse' => 'Browse', + 'builder' => 'Builder', + 'bulk_delete' => 'Bulk delete', + 'bulk_delete_confirm' => 'Yes, Delete These', + 'bulk_delete_nothing' => 'You haven\'t selected anything to delete', + 'cancel' => 'Cancel', + 'choose_type' => 'Choose Type', + 'click_here' => 'Click Here', + 'close' => 'Close', + 'compass' => 'Compass', + 'created_at' => 'Created at', + 'custom' => 'Custom', + 'dashboard' => 'Dashboard', + 'database' => 'Database', + 'default' => 'Default', + 'delete' => 'Delete', + 'delete_confirm' => 'Yes, Delete it!', + 'delete_question' => 'Are you sure you want to delete this', + 'delete_this_confirm' => 'Yes, Delete This', + 'deselect_all' => 'Deselect All', + 'download' => 'Download', + 'edit' => 'Edit', + 'email' => 'E-mail', + 'error_deleting' => 'Sorry it appears there was a problem deleting this', + 'exception' => 'Exception', + 'featured' => 'Featured', + 'field_does_not_exist' => 'Field does not exist', + 'how_to_use' => 'How To Use', + 'index' => 'Index', + 'internal_error' => 'Internal error', + 'items' => 'item(s)', + 'keep_sidebar_open' => 'Yarr! Drop the anchors! (and keep the sidebar open)', + 'key' => 'Key', + 'last_modified' => 'Last modified', + 'length' => 'Length', + 'login' => 'Login', + 'media' => 'Media', + 'menu_builder' => 'Menu Builder', + 'move' => 'Move', + 'name' => 'Name', + 'new' => 'New', + 'no' => 'No', + 'no_thanks' => 'No Thanks', + 'not_null' => 'Not Null', + 'options' => 'Options', + 'password' => 'Password', + 'permissions' => 'Permissions', + 'profile' => 'Profile', + 'public_url' => 'Public URL', + 'read' => 'Read', + 'rename' => 'Rename', + 'required' => 'Required', + 'return_to_list' => 'Return to List', + 'route' => 'Route', + 'save' => 'Save', + 'search' => 'Search', + 'select_all' => 'Select All', + 'select_group' => 'Select Existing Group or Add New', + 'settings' => 'Settings', + 'showing_entries' => 'Showing :from to :to of :all entrie|Showing :from to :to of :all entries', + 'submit' => 'Submit', 'successfully_added_new' => 'Successfully Added New', - 'successfully_deleted' => 'Successfully Deleted', - 'successfully_updated' => 'Successfully Updated', - 'timestamp' => 'Timestamp', - 'title' => 'Title', - 'type' => 'Type', - 'unsigned' => 'Unsigned', - 'unstick_sidebar' => 'Unstick the sidebar', - 'update' => 'Update', - 'update_failed' => 'Update Failed', - 'upload' => 'Upload', - 'url' => 'URL', - 'view' => 'View', - 'viewing' => 'Viewing', - 'yes' => 'Yes', - 'yes_please' => 'Yes, Please', + 'successfully_deleted' => 'Successfully Deleted', + 'successfully_updated' => 'Successfully Updated', + 'timestamp' => 'Timestamp', + 'title' => 'Title', + 'type' => 'Type', + 'unsigned' => 'Unsigned', + 'unstick_sidebar' => 'Unstick the sidebar', + 'update' => 'Update', + 'update_failed' => 'Update Failed', + 'upload' => 'Upload', + 'url' => 'URL', + 'view' => 'View', + 'viewing' => 'Viewing', + 'yes' => 'Yes', + 'yes_please' => 'Yes, Please', ], 'login' => [ - 'loggingin' => 'Logging in', + 'loggingin' => 'Logging in', 'signin_below' => 'Sign In Below:', - 'welcome' => 'Welcome to Voyager. The Missing Admin for Laravel', + 'welcome' => 'Welcome to Voyager. The Missing Admin for Laravel', ], 'profile' => [ - 'avatar' => 'Avatar', - 'edit' => 'Edit My Profile', - 'edit_user' => 'Edit User', - 'password' => 'Password', + 'avatar' => 'Avatar', + 'edit' => 'Edit My Profile', + 'edit_user' => 'Edit User', + 'password' => 'Password', 'password_hint' => 'Leave empty to keep the same', - 'role' => 'Role', - 'user_role' => 'User Role', + 'role' => 'Role', + 'user_role' => 'User Role', ], 'settings' => [ - 'usage_help' => 'You can get the value of each setting anywhere on your site by calling', - 'save' => 'Save Settings', - 'new' => 'New Setting', - 'help_name' => 'Setting name ex: Admin Title', - 'help_key' => 'Setting key ex: admin_title', - 'help_option' => '(optional, only applies to certain types like dropdown box or radio button)', - 'add_new' => 'Add New Setting', - 'delete_question' => 'Are you sure you want to delete the :setting Setting?', - 'delete_confirm' => 'Yes, Delete This Setting', + 'usage_help' => 'You can get the value of each setting anywhere on your site by calling', + 'save' => 'Save Settings', + 'new' => 'New Setting', + 'help_name' => 'Setting name ex: Admin Title', + 'help_key' => 'Setting key ex: admin_title', + 'help_option' => '(optional, only applies to certain types like dropdown box or radio button)', + 'add_new' => 'Add New Setting', + 'delete_question' => 'Are you sure you want to delete the :setting Setting?', + 'delete_confirm' => 'Yes, Delete This Setting', 'successfully_created' => 'Successfully Created Settings', - 'successfully_saved' => 'Successfully Saved Settings', + 'successfully_saved' => 'Successfully Saved Settings', 'successfully_deleted' => 'Successfully Deleted Setting', - 'already_at_top' => 'This is already at the top of the list', - 'already_at_bottom' => 'This is already at the bottom of the list', - 'key_already_exists' => 'The key :key already exists', - 'moved_order_up' => 'Moved :name setting order up', - 'moved_order_down' => 'Moved :name setting order down', + 'already_at_top' => 'This is already at the top of the list', + 'already_at_bottom' => 'This is already at the bottom of the list', + 'key_already_exists' => 'The key :key already exists', + 'moved_order_up' => 'Moved :name setting order up', + 'moved_order_down' => 'Moved :name setting order down', 'successfully_removed' => 'Successfully removed :name value', - 'group_general' => 'General', - 'group_admin' => 'Admin', - 'group_site' => 'Site', - 'group' => 'Group', - 'help_group' => 'Group this setting is assigned to', + 'group_general' => 'General', + 'group_admin' => 'Admin', + 'group_site' => 'Site', + 'group' => 'Group', + 'help_group' => 'Group this setting is assigned to', ], 'media' => [ - 'add_new_folder' => 'Add New Folder', - 'audio_support' => 'Your browser does not support the audio element.', - 'create_new_folder' => 'Create New Folder', + 'add_new_folder' => 'Add New Folder', + 'audio_support' => 'Your browser does not support the audio element.', + 'create_new_folder' => 'Create New Folder', 'delete_folder_question' => 'Deleting a folder will remove all files and folders contained inside', - 'destination_folder' => 'Destination Folder', - 'drag_drop_info' => 'Drag and drop files or click below to upload', - 'error_already_exists' => 'Sorry there is already a file/folder with that existing name in that folder.', - 'error_creating_dir' => 'Sorry something seems to have gone wrong with creating the directory, '. + 'destination_folder' => 'Destination Folder', + 'drag_drop_info' => 'Drag and drop files or click below to upload', + 'error_already_exists' => 'Sorry there is already a file/folder with that existing name in that folder.', + 'error_creating_dir' => 'Sorry something seems to have gone wrong with creating the directory, '. 'please check your permissions', 'error_deleting_file' => 'Sorry something seems to have gone wrong deleting this file, please check your '. 'permissions', @@ -157,280 +157,280 @@ 'delete the other file.', 'error_moving' => 'Sorry there seems to be a problem moving that file/folder, please make '. 'sure you have the correct permissions.', - 'error_uploading' => 'Upload Fail: Unknown error occurred!', + 'error_uploading' => 'Upload Fail: Unknown error occurred!', 'folder_exists_already' => 'Sorry that folder already exists, please delete that folder if you wish '. 'to re-create it', - 'image_does_not_exist' => 'Image does not exist', - 'image_removed' => 'Image removed', - 'library' => 'Media Library', - 'loading' => 'LOADING YOUR MEDIA FILES', - 'move_file_folder' => 'Move File/Folder', - 'new_file_folder' => 'New File/Folder Name', - 'new_folder_name' => 'New Folder Name', - 'no_files_here' => 'No files here.', - 'no_files_in_folder' => 'No files in this folder.', - 'nothing_selected' => 'No file or folder selected', - 'rename_file_folder' => 'Rename File/Folder', + 'image_does_not_exist' => 'Image does not exist', + 'image_removed' => 'Image removed', + 'library' => 'Media Library', + 'loading' => 'LOADING YOUR MEDIA FILES', + 'move_file_folder' => 'Move File/Folder', + 'new_file_folder' => 'New File/Folder Name', + 'new_folder_name' => 'New Folder Name', + 'no_files_here' => 'No files here.', + 'no_files_in_folder' => 'No files in this folder.', + 'nothing_selected' => 'No file or folder selected', + 'rename_file_folder' => 'Rename File/Folder', 'success_uploaded_file' => 'Successfully uploaded new file!', - 'success_uploading' => 'Image successfully uploaded!', - 'uploading_wrong_type' => 'Upload Fail: Unsupported file format or It is too large to upload!', - 'video_support' => 'Your browser does not support the video tag.', - 'crop' => 'Crop', - 'crop_and_create' => 'Crop & Create', + 'success_uploading' => 'Image successfully uploaded!', + 'uploading_wrong_type' => 'Upload Fail: Unsupported file format or It is too large to upload!', + 'video_support' => 'Your browser does not support the video tag.', + 'crop' => 'Crop', + 'crop_and_create' => 'Crop & Create', 'crop_override_confirm' => 'It will override the original image, are you sure?', - 'crop_image' => 'Crop Image', - 'success_crop_image' => 'Successfully crop the image', - 'height' => 'Height: ', - 'width' => 'Width: ', + 'crop_image' => 'Crop Image', + 'success_crop_image' => 'Successfully crop the image', + 'height' => 'Height: ', + 'width' => 'Width: ', ], 'menu_builder' => [ - 'color' => 'Color in RGB or hex (optional)', - 'color_ph' => 'Color (ex. #ffffff or rgb(255, 255, 255)', - 'create_new_item' => 'Create a New Menu Item', - 'delete_item_confirm' => 'Yes, Delete This Menu Item', + 'color' => 'Color in RGB or hex (optional)', + 'color_ph' => 'Color (ex. #ffffff or rgb(255, 255, 255)', + 'create_new_item' => 'Create a New Menu Item', + 'delete_item_confirm' => 'Yes, Delete This Menu Item', 'delete_item_question' => 'Are you sure you want to delete this menu item?', - 'drag_drop_info' => 'Drag and drop the menu Items below to re-arrange them.', - 'dynamic_route' => 'Dynamic Route', - 'edit_item' => 'Edit Menu Item', - 'icon_class' => 'Font Icon class for the Menu Item (Use a', - 'icon_class2' => 'Voyager Font Class)', - 'icon_class_ph' => 'Icon Class (optional)', - 'item_route' => 'Route for the menu item', - 'item_title' => 'Title of the Menu Item', - 'link_type' => 'Link type', - 'new_menu_item' => 'New Menu Item', - 'open_in' => 'Open In', - 'open_new' => 'New Tab/Window', - 'open_same' => 'Same Tab/Window', - 'route_parameter' => 'Route parameters (if any)', - 'static_url' => 'Static URL', + 'drag_drop_info' => 'Drag and drop the menu Items below to re-arrange them.', + 'dynamic_route' => 'Dynamic Route', + 'edit_item' => 'Edit Menu Item', + 'icon_class' => 'Font Icon class for the Menu Item (Use a', + 'icon_class2' => 'Voyager Font Class)', + 'icon_class_ph' => 'Icon Class (optional)', + 'item_route' => 'Route for the menu item', + 'item_title' => 'Title of the Menu Item', + 'link_type' => 'Link type', + 'new_menu_item' => 'New Menu Item', + 'open_in' => 'Open In', + 'open_new' => 'New Tab/Window', + 'open_same' => 'Same Tab/Window', + 'route_parameter' => 'Route parameters (if any)', + 'static_url' => 'Static URL', 'successfully_created' => 'Successfully Created New Menu Item.', 'successfully_deleted' => 'Successfully Deleted Menu Item.', 'successfully_updated' => 'Successfully Updated Menu Item.', - 'updated_order' => 'Successfully updated menu order.', - 'url' => 'URL for the Menu Item', - 'usage_hint' => 'You can output a menu anywhere on your site by calling|You can output '. + 'updated_order' => 'Successfully updated menu order.', + 'url' => 'URL for the Menu Item', + 'usage_hint' => 'You can output a menu anywhere on your site by calling|You can output '. 'this menu anywhere on your site by calling', ], 'post' => [ - 'category' => 'Post Category', - 'content' => 'Post Content', - 'details' => 'Post Details', - 'excerpt' => 'Excerpt Small description of this post', - 'image' => 'Post Image', + 'category' => 'Post Category', + 'content' => 'Post Content', + 'details' => 'Post Details', + 'excerpt' => 'Excerpt Small description of this post', + 'image' => 'Post Image', 'meta_description' => 'Meta Description', - 'meta_keywords' => 'Meta Keywords', - 'new' => 'Create New Post', - 'seo_content' => 'SEO Content', - 'seo_title' => 'Seo Title', - 'slug' => 'URL slug', - 'status' => 'Post Status', - 'status_draft' => 'draft', - 'status_pending' => 'pending', + 'meta_keywords' => 'Meta Keywords', + 'new' => 'Create New Post', + 'seo_content' => 'SEO Content', + 'seo_title' => 'Seo Title', + 'slug' => 'URL slug', + 'status' => 'Post Status', + 'status_draft' => 'draft', + 'status_pending' => 'pending', 'status_published' => 'published', - 'title' => 'Post Title', - 'title_sub' => 'The title for your post', - 'update' => 'Update Post', + 'title' => 'Post Title', + 'title_sub' => 'The title for your post', + 'update' => 'Update Post', ], 'database' => [ - 'add_bread' => 'Add BREAD to this table', - 'add_new_column' => 'Add New Column', - 'add_softdeletes' => 'Add Soft Deletes', - 'add_timestamps' => 'Add Timestamps', - 'already_exists' => 'already exists', - 'already_exists_table' => 'Table :table already exists', - 'bread_crud_actions' => 'BREAD/CRUD Actions', - 'bread_info' => 'BREAD info', - 'browse_bread' => 'Browse BREAD', - 'column' => 'Column', - 'composite_warning' => 'Warning: this column is part of a composite index', - 'controller_name' => 'Controller Name', - 'controller_name_hint' => 'ex. PageController, if left empty will use the BREAD Controller', - 'create_bread_for_table' => 'Create BREAD for :table table', - 'create_migration' => 'Create migration for this table?', - 'create_model_table' => 'Create model for this table?', - 'create_new_table' => 'Create New Table', - 'create_your_new_table' => 'Create Your New Table', - 'default' => 'Default', - 'delete_bread' => 'Delete BREAD', + 'add_bread' => 'Add BREAD to this table', + 'add_new_column' => 'Add New Column', + 'add_softdeletes' => 'Add Soft Deletes', + 'add_timestamps' => 'Add Timestamps', + 'already_exists' => 'already exists', + 'already_exists_table' => 'Table :table already exists', + 'bread_crud_actions' => 'BREAD/CRUD Actions', + 'bread_info' => 'BREAD info', + 'browse_bread' => 'Browse BREAD', + 'column' => 'Column', + 'composite_warning' => 'Warning: this column is part of a composite index', + 'controller_name' => 'Controller Name', + 'controller_name_hint' => 'ex. PageController, if left empty will use the BREAD Controller', + 'create_bread_for_table' => 'Create BREAD for :table table', + 'create_migration' => 'Create migration for this table?', + 'create_model_table' => 'Create model for this table?', + 'create_new_table' => 'Create New Table', + 'create_your_new_table' => 'Create Your New Table', + 'default' => 'Default', + 'delete_bread' => 'Delete BREAD', 'delete_bread_before_table' => 'Please make sure to remove the BREAD on this table before deleting the table.', - 'delete_table_bread_conf' => 'Yes, remove the BREAD', - 'delete_table_bread_quest' => 'Are you sure you want to delete the BREAD for the :table table?', - 'delete_table_confirm' => 'Yes, delete this table', - 'delete_table_question' => 'Are you sure you want to delete the :table table?', - 'description' => 'Description', - 'display_name' => 'Display Name', - 'display_name_plural' => 'Display Name (Plural)', - 'display_name_singular' => 'Display Name (Singular)', - 'edit_bread' => 'Edit BREAD', - 'edit_bread_for_table' => 'Edit BREAD for :table table', - 'edit_rows' => 'Edit the rows for the :table table below', - 'edit_table' => 'Edit the :table table below', - 'edit_table_not_exist' => 'The table you want to edit doesn\'t exist', - 'error_creating_bread' => 'Sorry it appears there may have been a problem creating this BREAD', - 'error_removing_bread' => 'Sorry it appears there was a problem removing this BREAD', - 'error_updating_bread' => 'Sorry it appears there may have been a problem updating this BREAD', - 'extra' => 'Extra', - 'field' => 'Field', - 'field_safe_failed' => 'Failed to save field :field, we\'re rolling back!', - 'generate_permissions' => 'Generate Permissions', - 'icon_class' => 'Icon to use for this Table', - 'icon_hint' => 'Icon (optional) Use a', - 'icon_hint2' => 'Voyager Font Class', - 'index' => 'INDEX', - 'input_type' => 'Input Type', - 'key' => 'Key', - 'model_class' => 'Model Class Name', - 'model_name' => 'Model Name', - 'model_name_ph' => 'ex. \App\Models\User, if left empty will try and use the table name', - 'name_warning' => 'Please name the column before adding an index', - 'no_composites_warning' => 'This table has composite indexes. Please note that they are not supported at the moment. Be careful when trying to add/remove indexes.', - 'null' => 'Null', - 'optional_details' => 'Optional Details', - 'policy_class' => 'Policy Class Name', - 'policy_name' => 'Policy Name', - 'policy_name_ph' => 'ex. \App\Policies\UserPolicy, if left empty will try and use the default', - 'primary' => 'PRIMARY', - 'server_pagination' => 'Server-side Pagination', - 'success_create_table' => 'Successfully created :table table', - 'success_created_bread' => 'Successfully created new BREAD', - 'success_delete_table' => 'Successfully deleted :table table', - 'success_remove_bread' => 'Successfully removed BREAD from :datatype', - 'success_update_bread' => 'Successfully updated the :datatype BREAD', - 'success_update_table' => 'Successfully updated :table table', - 'table_actions' => 'Table Actions', - 'table_columns' => 'Table Columns', - 'table_has_index' => 'The table already has a primary index.', - 'table_name' => 'Table Name', - 'table_no_columns' => 'The table has no columns...', - 'type' => 'Type', - 'type_not_supported' => 'This type is not supported', - 'unique' => 'UNIQUE', - 'unknown_type' => 'Unknown Type', - 'update_table' => 'Update Table', - 'url_slug' => 'URL Slug (must be unique)', - 'url_slug_ph' => 'URL slug (ex. posts)', - 'visibility' => 'Visibility', - 'relationship' => [ - 'relationship' => 'Relationship', - 'relationships' => 'Relationships', - 'has_one' => 'Has One', - 'has_many' => 'Has Many', - 'belongs_to' => 'Belongs To', - 'belongs_to_many' => 'Belongs To Many', - 'which_column_from' => 'Which column from the', + 'delete_table_bread_conf' => 'Yes, remove the BREAD', + 'delete_table_bread_quest' => 'Are you sure you want to delete the BREAD for the :table table?', + 'delete_table_confirm' => 'Yes, delete this table', + 'delete_table_question' => 'Are you sure you want to delete the :table table?', + 'description' => 'Description', + 'display_name' => 'Display Name', + 'display_name_plural' => 'Display Name (Plural)', + 'display_name_singular' => 'Display Name (Singular)', + 'edit_bread' => 'Edit BREAD', + 'edit_bread_for_table' => 'Edit BREAD for :table table', + 'edit_rows' => 'Edit the rows for the :table table below', + 'edit_table' => 'Edit the :table table below', + 'edit_table_not_exist' => 'The table you want to edit doesn\'t exist', + 'error_creating_bread' => 'Sorry it appears there may have been a problem creating this BREAD', + 'error_removing_bread' => 'Sorry it appears there was a problem removing this BREAD', + 'error_updating_bread' => 'Sorry it appears there may have been a problem updating this BREAD', + 'extra' => 'Extra', + 'field' => 'Field', + 'field_safe_failed' => 'Failed to save field :field, we\'re rolling back!', + 'generate_permissions' => 'Generate Permissions', + 'icon_class' => 'Icon to use for this Table', + 'icon_hint' => 'Icon (optional) Use a', + 'icon_hint2' => 'Voyager Font Class', + 'index' => 'INDEX', + 'input_type' => 'Input Type', + 'key' => 'Key', + 'model_class' => 'Model Class Name', + 'model_name' => 'Model Name', + 'model_name_ph' => 'ex. \App\Models\User, if left empty will try and use the table name', + 'name_warning' => 'Please name the column before adding an index', + 'no_composites_warning' => 'This table has composite indexes. Please note that they are not supported at the moment. Be careful when trying to add/remove indexes.', + 'null' => 'Null', + 'optional_details' => 'Optional Details', + 'policy_class' => 'Policy Class Name', + 'policy_name' => 'Policy Name', + 'policy_name_ph' => 'ex. \App\Policies\UserPolicy, if left empty will try and use the default', + 'primary' => 'PRIMARY', + 'server_pagination' => 'Server-side Pagination', + 'success_create_table' => 'Successfully created :table table', + 'success_created_bread' => 'Successfully created new BREAD', + 'success_delete_table' => 'Successfully deleted :table table', + 'success_remove_bread' => 'Successfully removed BREAD from :datatype', + 'success_update_bread' => 'Successfully updated the :datatype BREAD', + 'success_update_table' => 'Successfully updated :table table', + 'table_actions' => 'Table Actions', + 'table_columns' => 'Table Columns', + 'table_has_index' => 'The table already has a primary index.', + 'table_name' => 'Table Name', + 'table_no_columns' => 'The table has no columns...', + 'type' => 'Type', + 'type_not_supported' => 'This type is not supported', + 'unique' => 'UNIQUE', + 'unknown_type' => 'Unknown Type', + 'update_table' => 'Update Table', + 'url_slug' => 'URL Slug (must be unique)', + 'url_slug_ph' => 'URL slug (ex. posts)', + 'visibility' => 'Visibility', + 'relationship' => [ + 'relationship' => 'Relationship', + 'relationships' => 'Relationships', + 'has_one' => 'Has One', + 'has_many' => 'Has Many', + 'belongs_to' => 'Belongs To', + 'belongs_to_many' => 'Belongs To Many', + 'which_column_from' => 'Which column from the', 'is_used_to_reference' => 'is used to reference the', - 'pivot_table' => 'Pivot Table', - 'selection_details' => 'Selection Details', - 'display_the' => 'Display the', - 'store_the' => 'Store the', - 'easy_there' => 'Easy there Captain', - 'before_create' => 'Before you can create a new relationship you will need to create the BREAD first.
Then, return back to edit the BREAD and you will be able to add relationships.
Thanks.', - 'cancel' => 'Cancel', - 'add_new' => 'Add New relationship', - 'open' => 'Open', - 'close' => 'Close', + 'pivot_table' => 'Pivot Table', + 'selection_details' => 'Selection Details', + 'display_the' => 'Display the', + 'store_the' => 'Store the', + 'easy_there' => 'Easy there Captain', + 'before_create' => 'Before you can create a new relationship you will need to create the BREAD first.
Then, return back to edit the BREAD and you will be able to add relationships.
Thanks.', + 'cancel' => 'Cancel', + 'add_new' => 'Add New relationship', + 'open' => 'Open', + 'close' => 'Close', 'relationship_details' => 'Relationship Details', - 'browse' => 'Browse', - 'read' => 'Read', - 'edit' => 'Edit', - 'add' => 'Add', - 'delete' => 'Delete', - 'create' => 'Create a Relationship', - 'namespace' => 'Model Namespace (ex. App\Category)', + 'browse' => 'Browse', + 'read' => 'Read', + 'edit' => 'Edit', + 'add' => 'Add', + 'delete' => 'Delete', + 'create' => 'Create a Relationship', + 'namespace' => 'Model Namespace (ex. App\Category)', ], ], 'dimmer' => [ - 'page' => 'Page|Pages', + 'page' => 'Page|Pages', 'page_link_text' => 'View all pages', - 'page_text' => 'You have :count :string in your database. Click on button below to view all pages.', - 'post' => 'Post|Posts', + 'page_text' => 'You have :count :string in your database. Click on button below to view all pages.', + 'post' => 'Post|Posts', 'post_link_text' => 'View all posts', - 'post_text' => 'You have :count :string in your database. Click on button below to view all posts.', - 'user' => 'User|Users', + 'post_text' => 'You have :count :string in your database. Click on button below to view all posts.', + 'user' => 'User|Users', 'user_link_text' => 'View all users', - 'user_text' => 'You have :count :string in your database. Click on button below to view all users.', + 'user_text' => 'You have :count :string in your database. Click on button below to view all users.', ], 'form' => [ - 'field_password_keep' => 'Leave empty to keep the same', + 'field_password_keep' => 'Leave empty to keep the same', 'field_select_dd_relationship' => 'Make sure to setup the appropriate relationship in the :method method of '. 'the :class class.', - 'type_checkbox' => 'Check Box', - 'type_codeeditor' => 'Code Editor', - 'type_file' => 'File', - 'type_image' => 'Image', - 'type_radiobutton' => 'Radio Button', - 'type_richtextbox' => 'Rich Textbox', + 'type_checkbox' => 'Check Box', + 'type_codeeditor' => 'Code Editor', + 'type_file' => 'File', + 'type_image' => 'Image', + 'type_radiobutton' => 'Radio Button', + 'type_richtextbox' => 'Rich Textbox', 'type_selectdropdown' => 'Select Dropdown', - 'type_textarea' => 'Text Area', - 'type_textbox' => 'Text Box', + 'type_textarea' => 'Text Area', + 'type_textbox' => 'Text Box', ], // DataTable translations from: https://github.com/DataTables/Plugins/tree/master/i18n 'datatable' => [ - 'sEmptyTable' => 'No data available in table', - 'sInfo' => 'Showing _START_ to _END_ of _TOTAL_ entries', - 'sInfoEmpty' => 'Showing 0 to 0 of 0 entries', - 'sInfoFiltered' => '(filtered from _MAX_ total entries)', - 'sInfoPostFix' => '', - 'sInfoThousands' => ',', - 'sLengthMenu' => 'Show _MENU_ entries', + 'sEmptyTable' => 'No data available in table', + 'sInfo' => 'Showing _START_ to _END_ of _TOTAL_ entries', + 'sInfoEmpty' => 'Showing 0 to 0 of 0 entries', + 'sInfoFiltered' => '(filtered from _MAX_ total entries)', + 'sInfoPostFix' => '', + 'sInfoThousands' => ',', + 'sLengthMenu' => 'Show _MENU_ entries', 'sLoadingRecords' => 'Loading...', - 'sProcessing' => 'Processing...', - 'sSearch' => 'Search:', - 'sZeroRecords' => 'No matching records found', - 'oPaginate' => [ - 'sFirst' => 'First', - 'sLast' => 'Last', - 'sNext' => 'Next', + 'sProcessing' => 'Processing...', + 'sSearch' => 'Search:', + 'sZeroRecords' => 'No matching records found', + 'oPaginate' => [ + 'sFirst' => 'First', + 'sLast' => 'Last', + 'sNext' => 'Next', 'sPrevious' => 'Previous', ], 'oAria' => [ - 'sSortAscending' => ': activate to sort column ascending', + 'sSortAscending' => ': activate to sort column ascending', 'sSortDescending' => ': activate to sort column descending', ], ], 'theme' => [ - 'footer_copyright' => 'Made with by', + 'footer_copyright' => 'Made with by', 'footer_copyright2' => 'Made with rum and even more rum', ], 'json' => [ - 'invalid' => 'Invalid Json', - 'invalid_message' => 'Seems like you introduced some invalid JSON.', - 'valid' => 'Valid Json', + 'invalid' => 'Invalid Json', + 'invalid_message' => 'Seems like you introduced some invalid JSON.', + 'valid' => 'Valid Json', 'validation_errors' => 'Validation errors', ], 'analytics' => [ - 'by_pageview' => 'By pageview', - 'by_sessions' => 'By sessions', - 'by_users' => 'By users', + 'by_pageview' => 'By pageview', + 'by_sessions' => 'By sessions', + 'by_users' => 'By users', 'no_client_id' => 'To view analytics you\'ll need to get a google analytics client id and '. 'add it to your settings for the key google_analytics_client_id'. '. Get your key in your Google developer console:', - 'set_view' => 'Select a View', - 'this_vs_last_week' => 'This Week vs Last Week', - 'this_vs_last_year' => 'This Year vs Last Year', - 'top_browsers' => 'Top Browsers', - 'top_countries' => 'Top Countries', + 'set_view' => 'Select a View', + 'this_vs_last_week' => 'This Week vs Last Week', + 'this_vs_last_year' => 'This Year vs Last Year', + 'top_browsers' => 'Top Browsers', + 'top_countries' => 'Top Countries', 'various_visualizations' => 'Various visualizations', ], 'error' => [ - 'symlink_created_text' => 'We just created the missing symlink for you.', + 'symlink_created_text' => 'We just created the missing symlink for you.', 'symlink_created_title' => 'Missing storage symlink created', - 'symlink_failed_text' => 'We failed to generate the missing symlink for your application. '. + 'symlink_failed_text' => 'We failed to generate the missing symlink for your application. '. 'It seems like your hosting provider does not support it.', - 'symlink_failed_title' => 'Could not create missing storage symlink', + 'symlink_failed_title' => 'Could not create missing storage symlink', 'symlink_missing_button' => 'Fix it', - 'symlink_missing_text' => 'We could not find a storage symlink. This could cause problems with '. + 'symlink_missing_text' => 'We could not find a storage symlink. This could cause problems with '. 'loading media files from the browser.', 'symlink_missing_title' => 'Missing storage symlink', ], diff --git a/lang/es/voyager.php b/lang/es/voyager.php index 5a4734fcc..0be238631 100644 --- a/lang/es/voyager.php +++ b/lang/es/voyager.php @@ -8,141 +8,141 @@ 'this_year' => 'Este año', ], 'generic' => [ - 'action' => 'Acción', - 'actions' => 'Acciones', - 'add' => 'Añadir', - 'add_folder' => 'Añadir carpeta', - 'add_new' => 'Añadir nuevo', - 'all_done' => 'Todo listo', - 'are_you_sure' => 'Estás seguro', - 'are_you_sure_delete' => 'Estás seguro que quieres borrarlo', - 'auto_increment' => 'Autoincremento', - 'browse' => 'Navegar', - 'builder' => 'Constructor', - 'bulk_delete' => 'Borrado masivo', - 'bulk_delete_confirm' => 'Sí, ¡Bórralo!', - 'bulk_delete_nothing' => 'Debe seleccionar al menos un registro antes de usar el borrado masivo.', - 'cancel' => 'Cancelar', - 'choose_type' => 'Elegir tipo', - 'click_here' => 'Haga clic aquí', - 'close' => 'Cerrar', - 'compass' => 'Compás', - 'created_at' => 'Creado en', - 'custom' => 'Personalizado', - 'dashboard' => 'Tablero', - 'database' => 'Base de datos', - 'default' => 'Defecto', - 'delete' => 'Borrar', - 'delete_confirm' => 'Sí, ¡Bórralo!', - 'delete_question' => 'Estás seguro que quieres eliminar esto', - 'delete_this_confirm' => 'Sí, eliminar esto', - 'deselect_all' => 'Deseleccionar todo', - 'download' => 'Descargar', - 'edit' => 'Editar', - 'email' => 'Email', - 'error_deleting' => 'Lo siento, parece que se ha producido un problema al eliminar', - 'exception' => 'Excepción', - 'featured' => 'Destacados', - 'field_does_not_exist' => 'El campo no existe', - 'how_to_use' => 'Cómo utilizar', - 'index' => 'Índice', - 'internal_error' => 'Error interno', - 'items' => 'Ítem(s)', - 'keep_sidebar_open' => '¡Yarr! ¡Suelta las anclas! (Y mantén la barra lateral abierta) ', - 'key' => 'Clave', - 'last_modified' => 'Última modificación', - 'length' => 'Longitud', - 'login' => 'Iniciar sesión', - 'media' => 'Medios', - 'menu_builder' => 'Constructor de menús', - 'move' => 'Mover', - 'name' => 'Nombre', - 'new' => 'Nuevo', - 'no' => 'No', - 'no_thanks' => 'No, gracias', - 'not_null' => 'No nulo', - 'options' => 'Opciones', - 'password' => 'Contraseña', - 'permissions' => 'Permisos', - 'profile' => 'Perfil', - 'public_url' => 'URL pública', - 'read' => 'Leer', - 'rename' => 'Renombrar', - 'required' => 'Necesario', - 'return_to_list' => 'Volver a la lista', - 'route' => 'Ruta', - 'save' => 'Guardar', - 'search' => 'Buscar', - 'select_all' => 'Seleccionar todo', - 'select_group' => 'Seleccione un grupo existente o añada uno', - 'settings' => 'Ajustes', - 'showing_entries' => 'Mostrando de :from a :to de :all entradas | Mostrando de :from a :to de todas las entradas', - 'submit' => 'Enviar', + 'action' => 'Acción', + 'actions' => 'Acciones', + 'add' => 'Añadir', + 'add_folder' => 'Añadir carpeta', + 'add_new' => 'Añadir nuevo', + 'all_done' => 'Todo listo', + 'are_you_sure' => 'Estás seguro', + 'are_you_sure_delete' => 'Estás seguro que quieres borrarlo', + 'auto_increment' => 'Autoincremento', + 'browse' => 'Navegar', + 'builder' => 'Constructor', + 'bulk_delete' => 'Borrado masivo', + 'bulk_delete_confirm' => 'Sí, ¡Bórralo!', + 'bulk_delete_nothing' => 'Debe seleccionar al menos un registro antes de usar el borrado masivo.', + 'cancel' => 'Cancelar', + 'choose_type' => 'Elegir tipo', + 'click_here' => 'Haga clic aquí', + 'close' => 'Cerrar', + 'compass' => 'Compás', + 'created_at' => 'Creado en', + 'custom' => 'Personalizado', + 'dashboard' => 'Tablero', + 'database' => 'Base de datos', + 'default' => 'Defecto', + 'delete' => 'Borrar', + 'delete_confirm' => 'Sí, ¡Bórralo!', + 'delete_question' => 'Estás seguro que quieres eliminar esto', + 'delete_this_confirm' => 'Sí, eliminar esto', + 'deselect_all' => 'Deseleccionar todo', + 'download' => 'Descargar', + 'edit' => 'Editar', + 'email' => 'Email', + 'error_deleting' => 'Lo siento, parece que se ha producido un problema al eliminar', + 'exception' => 'Excepción', + 'featured' => 'Destacados', + 'field_does_not_exist' => 'El campo no existe', + 'how_to_use' => 'Cómo utilizar', + 'index' => 'Índice', + 'internal_error' => 'Error interno', + 'items' => 'Ítem(s)', + 'keep_sidebar_open' => '¡Yarr! ¡Suelta las anclas! (Y mantén la barra lateral abierta) ', + 'key' => 'Clave', + 'last_modified' => 'Última modificación', + 'length' => 'Longitud', + 'login' => 'Iniciar sesión', + 'media' => 'Medios', + 'menu_builder' => 'Constructor de menús', + 'move' => 'Mover', + 'name' => 'Nombre', + 'new' => 'Nuevo', + 'no' => 'No', + 'no_thanks' => 'No, gracias', + 'not_null' => 'No nulo', + 'options' => 'Opciones', + 'password' => 'Contraseña', + 'permissions' => 'Permisos', + 'profile' => 'Perfil', + 'public_url' => 'URL pública', + 'read' => 'Leer', + 'rename' => 'Renombrar', + 'required' => 'Necesario', + 'return_to_list' => 'Volver a la lista', + 'route' => 'Ruta', + 'save' => 'Guardar', + 'search' => 'Buscar', + 'select_all' => 'Seleccionar todo', + 'select_group' => 'Seleccione un grupo existente o añada uno', + 'settings' => 'Ajustes', + 'showing_entries' => 'Mostrando de :from a :to de :all entradas | Mostrando de :from a :to de todas las entradas', + 'submit' => 'Enviar', 'successfully_added_new' => 'Añadido exitosamente', - 'successfully_deleted' => 'Eliminado exitosamente', - 'successfully_updated' => 'Actualizado exitosamente', - 'timestamp' => 'Timestamp', - 'title' => 'Título', - 'type' => 'Tipo', - 'unsigned' => 'No signado', - 'unstick_sidebar' => 'Despegar la barra lateral', - 'update' => 'Actualizar', - 'update_failed' => 'Actualización fallida', - 'upload' => 'Subir', - 'url' => 'URL', - 'view' => 'Ver', - 'viewing' => 'Viendo', - 'yes' => 'Sí', - 'yes_please' => 'Sí, por favor', + 'successfully_deleted' => 'Eliminado exitosamente', + 'successfully_updated' => 'Actualizado exitosamente', + 'timestamp' => 'Timestamp', + 'title' => 'Título', + 'type' => 'Tipo', + 'unsigned' => 'No signado', + 'unstick_sidebar' => 'Despegar la barra lateral', + 'update' => 'Actualizar', + 'update_failed' => 'Actualización fallida', + 'upload' => 'Subir', + 'url' => 'URL', + 'view' => 'Ver', + 'viewing' => 'Viendo', + 'yes' => 'Sí', + 'yes_please' => 'Sí, por favor', ], 'login' => [ - 'logginign' => 'Iniciando sesión', + 'logginign' => 'Iniciando sesión', 'signin_below' => 'Ingresar abajo:', - 'welcome' => 'Bienvenido a Voyager. El administrador desaparecido de Laravel ', + 'welcome' => 'Bienvenido a Voyager. El administrador desaparecido de Laravel ', ], 'profile' => [ - 'avatar' => 'Avatar', - 'edit' => 'Editar mi perfil', - 'edit_user' => 'Editar usuario', - 'password' => 'Contraseña', + 'avatar' => 'Avatar', + 'edit' => 'Editar mi perfil', + 'edit_user' => 'Editar usuario', + 'password' => 'Contraseña', 'password_hint' => 'Dejar vacío para mantener el mismo', - 'role' => 'Rol', - 'user_role' => 'Rol del usuario', + 'role' => 'Rol', + 'user_role' => 'Rol del usuario', ], 'settings' => [ - 'usage_help' => 'Puede obtener el valor de cada parámetro en cualquier lugar de su sitio llamando', - 'save' => 'Guardar parámetro', - 'new' => 'Nuevo parámetro', - 'help_name' => 'Nombre del parámetro Ej: Titulo de Pagina', - 'help_key' => 'Clave del parámetro Ej: pag_titulo', - 'help_option' => '(Opcional, sólo se aplica a ciertos tipos como cuadro desplegable o botón de opción)', - 'add_new' => 'Añadir nuevo parámetro', - 'delete_question' => '¿Está seguro de que desea eliminar el parámetro :setting?', - 'delete_confirm' => 'Sí, eliminar este parámetro', + 'usage_help' => 'Puede obtener el valor de cada parámetro en cualquier lugar de su sitio llamando', + 'save' => 'Guardar parámetro', + 'new' => 'Nuevo parámetro', + 'help_name' => 'Nombre del parámetro Ej: Titulo de Pagina', + 'help_key' => 'Clave del parámetro Ej: pag_titulo', + 'help_option' => '(Opcional, sólo se aplica a ciertos tipos como cuadro desplegable o botón de opción)', + 'add_new' => 'Añadir nuevo parámetro', + 'delete_question' => '¿Está seguro de que desea eliminar el parámetro :setting?', + 'delete_confirm' => 'Sí, eliminar este parámetro', 'successfully_created' => 'Parámetro creado exitosamente', - 'successfully_saved' => 'Parámetro guardado exitosamente', + 'successfully_saved' => 'Parámetro guardado exitosamente', 'successfully_deleted' => 'Parámetro eliminado exitosamente', - 'already_at_top' => 'Esto ya está en la parte superior de la lista', - 'already_at_bottom' => 'Esto ya está en la parte inferior de la lista', - 'key_already_exists' => 'Esta opción ya ha sido creada', - 'moved_order_up' => 'Orden del parámetro :name aumentado', - 'moved_order_down' => 'Orden del parámetro :name disminuido', + 'already_at_top' => 'Esto ya está en la parte superior de la lista', + 'already_at_bottom' => 'Esto ya está en la parte inferior de la lista', + 'key_already_exists' => 'Esta opción ya ha sido creada', + 'moved_order_up' => 'Orden del parámetro :name aumentado', + 'moved_order_down' => 'Orden del parámetro :name disminuido', 'successfully_removed' => 'Eliminado correctamente parámetro :name ', - 'group_general' => 'General', - 'group_admin' => 'Admin', - 'group_site' => 'Site', - 'group' => 'Grupo', - 'help_group' => 'Esta opción está asignada a', + 'group_general' => 'General', + 'group_admin' => 'Admin', + 'group_site' => 'Site', + 'group' => 'Grupo', + 'help_group' => 'Esta opción está asignada a', ], 'media' => [ - 'add_new_folder' => 'Añadir nueva carpeta', - 'audio_support' => 'Su navegador no admite el elemento de audio.', - 'create_new_folder' => 'Crear nueva carpeta', + 'add_new_folder' => 'Añadir nueva carpeta', + 'audio_support' => 'Su navegador no admite el elemento de audio.', + 'create_new_folder' => 'Crear nueva carpeta', 'delete_folder_question' => 'Eliminar una carpeta eliminará todos los archivos y carpetas contenidos dentro', - 'destination_folder' => 'Carpeta de destino', - 'drag_drop_info' => 'Arrastre y suelte archivos o haga clic abajo para cargar', - 'error_already_exists' => 'Lo siento, ya hay un archivo/carpeta existente con ese nombre en esa carpeta.', - 'error_creating_dir' => 'Lo siento, algo parece haber ido mal con la creación del directorio,'. + 'destination_folder' => 'Carpeta de destino', + 'drag_drop_info' => 'Arrastre y suelte archivos o haga clic abajo para cargar', + 'error_already_exists' => 'Lo siento, ya hay un archivo/carpeta existente con ese nombre en esa carpeta.', + 'error_creating_dir' => 'Lo siento, algo parece haber ido mal con la creación del directorio,'. 'por favor revise sus permisos', 'error_deleting_file' => 'Lo siento, algo parece haber ido mal con en el borrado del archivo,'. 'por favor revise sus permisos', @@ -152,241 +152,241 @@ 'borre el otro archivo.', 'error_moving' => 'Lo siento, parece que hay un problema al mover ese archivo/carpeta, por favor '. 'asegúrese de tener los permisos correctos.', - 'error_uploading' => 'Carga Fallida: Ocurrió un error desconocido!', + 'error_uploading' => 'Carga Fallida: Ocurrió un error desconocido!', 'folder_exists_already' => 'Lo siento, la carpeta ya existe, por favor, elimine esa carpeta si desea '. 'crearla nuevamente', - 'image_does_not_exist' => 'La imagen no existe', - 'image_removed' => 'Imagen eliminada', - 'library' => 'Mediateca', - 'loading' => 'CARGANDO SUS ARCHIVOS DE MEDIOS', - 'move_file_folder' => 'Mover Archivo/Carpeta', - 'new_file_folder' => 'Nuevo nombre de archivo/carpeta', - 'new_folder_name' => 'Nombre de nueva carpeta', - 'no_files_here' => 'No hay archivos aquí.', - 'no_files_in_folder' => 'No hay archivos en esta carpeta.', - 'nothing_selected' => 'No se ha seleccionado ningún archivo o carpeta', - 'rename_file_folder' => 'Renombrar archivo/carpeta', + 'image_does_not_exist' => 'La imagen no existe', + 'image_removed' => 'Imagen eliminada', + 'library' => 'Mediateca', + 'loading' => 'CARGANDO SUS ARCHIVOS DE MEDIOS', + 'move_file_folder' => 'Mover Archivo/Carpeta', + 'new_file_folder' => 'Nuevo nombre de archivo/carpeta', + 'new_folder_name' => 'Nombre de nueva carpeta', + 'no_files_here' => 'No hay archivos aquí.', + 'no_files_in_folder' => 'No hay archivos en esta carpeta.', + 'nothing_selected' => 'No se ha seleccionado ningún archivo o carpeta', + 'rename_file_folder' => 'Renombrar archivo/carpeta', 'success_uploaded_file' => 'Nuevo archivo subido exitosamente!', - 'success_uploading' => 'Imagen cargada exitosamente!', - 'uploading_wrong_type' => 'Falla de carga: formato de archivo no soportado o es demasiado grande para cargar!', - 'video_support' => 'Su navegador no soporta la etiqueta de vídeo.', - 'crop' => 'Cortar', - 'crop_and_create' => 'Cortar & Crear', + 'success_uploading' => 'Imagen cargada exitosamente!', + 'uploading_wrong_type' => 'Falla de carga: formato de archivo no soportado o es demasiado grande para cargar!', + 'video_support' => 'Su navegador no soporta la etiqueta de vídeo.', + 'crop' => 'Cortar', + 'crop_and_create' => 'Cortar & Crear', 'crop_override_confirm' => 'Se anulará la imagen original, ¿está seguro?', - 'crop_image' => 'Recortar imagen', - 'success_crop_image' => 'Imagen recortada con éxito', - 'height' => 'Alto: ', - 'width' => 'Ancho: ', + 'crop_image' => 'Recortar imagen', + 'success_crop_image' => 'Imagen recortada con éxito', + 'height' => 'Alto: ', + 'width' => 'Ancho: ', ], 'menu_builder' => [ - 'color' => 'Color en RGB o hex (opcional)', - 'color_ph' => 'Color (por ejemplo, #ffffff o rgb (255, 255, 255)', - 'create_new_item' => 'Crear una nueva opción de menú', - 'delete_item_confirm' => 'Sí, eliminar esta opción de menú', + 'color' => 'Color en RGB o hex (opcional)', + 'color_ph' => 'Color (por ejemplo, #ffffff o rgb (255, 255, 255)', + 'create_new_item' => 'Crear una nueva opción de menú', + 'delete_item_confirm' => 'Sí, eliminar esta opción de menú', 'delete_item_question' => '¿Está seguro de que desea eliminar esta opción del menú?', - 'drag_drop_info' => 'Arraste y suelte las opciones de menú para reogranizarlas', - 'dynamic_route' => 'Ruta Dinámica', - 'edit_item' => 'Editar opción del menú', - 'icon_class' => 'Icono para la opción de menú (Use una', - 'icon_class2' => 'Voyager Font Class)', - 'icon_class_ph' => 'Icono (opcional)', - 'item_route' => 'Ruta para la opción de menú', - 'item_title' => 'Título de la opción de menú', - 'link_type' => 'Tipo de enlace', - 'new_menu_item' => 'Nueva opción de menú', - 'open_in' => 'Ábrelo', - 'open_new' => 'Nueva pestaña / ventana', - 'open_same' => 'Misma pestaña / ventana', - 'route_parameter' => 'Parámetros de ruta (si existen)', - 'static_url' => 'URL estática', + 'drag_drop_info' => 'Arraste y suelte las opciones de menú para reogranizarlas', + 'dynamic_route' => 'Ruta Dinámica', + 'edit_item' => 'Editar opción del menú', + 'icon_class' => 'Icono para la opción de menú (Use una', + 'icon_class2' => 'Voyager Font Class)', + 'icon_class_ph' => 'Icono (opcional)', + 'item_route' => 'Ruta para la opción de menú', + 'item_title' => 'Título de la opción de menú', + 'link_type' => 'Tipo de enlace', + 'new_menu_item' => 'Nueva opción de menú', + 'open_in' => 'Ábrelo', + 'open_new' => 'Nueva pestaña / ventana', + 'open_same' => 'Misma pestaña / ventana', + 'route_parameter' => 'Parámetros de ruta (si existen)', + 'static_url' => 'URL estática', 'successfully_created' => 'Se creó una nueva opción de menú.', 'successfully_deleted' => 'Opción de menú eliminada exitosamente.', 'successfully_updated' => 'Opción de menú actualizada exitosamente.', - 'updated_order' => 'Orden actualizado exitosamente.', - 'url' => 'URL para la opción de menú', - 'usage_hint' => 'Puede emitir un menú en cualquier lugar de su sitio llamando a ', + 'updated_order' => 'Orden actualizado exitosamente.', + 'url' => 'URL para la opción de menú', + 'usage_hint' => 'Puede emitir un menú en cualquier lugar de su sitio llamando a ', ], 'post' => [ - 'category' => 'Categoría del Post', - 'content' => 'Contenido del Post', - 'details' => 'Detalles del Post', - 'excerpt' => 'Extracto Pequeña descripción de este post ', - 'image' => 'Publicar imagen', + 'category' => 'Categoría del Post', + 'content' => 'Contenido del Post', + 'details' => 'Detalles del Post', + 'excerpt' => 'Extracto Pequeña descripción de este post ', + 'image' => 'Publicar imagen', 'meta_description' => 'Meta Descripción', - 'meta_keywords' => 'Meta palabras clave', - 'new' => 'Crear nuevo post', - 'seo_content' => 'Contenido SEO', - 'seo_title' => 'Título Seo', - 'slug' => 'URL slug', - 'status' => 'Estado del Post', - 'status_draft' => 'borrador', - 'status_pending' => 'pendiente', + 'meta_keywords' => 'Meta palabras clave', + 'new' => 'Crear nuevo post', + 'seo_content' => 'Contenido SEO', + 'seo_title' => 'Título Seo', + 'slug' => 'URL slug', + 'status' => 'Estado del Post', + 'status_draft' => 'borrador', + 'status_pending' => 'pendiente', 'status_published' => 'publicado', - 'title' => 'Título del Post', - 'title_sub' => 'El título de Post', - 'update' => 'Actualizar Post', + 'title' => 'Título del Post', + 'title_sub' => 'El título de Post', + 'update' => 'Actualizar Post', ], 'database' => [ - 'add_bread' => 'Añadir BREAD a esta tabla', - 'add_new_column' => 'Añadir nueva columna', - 'add_softdeletes' => 'Añadir Soft Deletes', - 'add_timestamps' => 'Añadir Timestamps', - 'already_exists' => 'ya existe', - 'already_exists_table' => 'Tabla :table ya existe', - 'bread_crud_actions' => 'Acciones BREAD / CRUD', - 'bread_info' => 'Información de BREAD', - 'column' => 'Columna', - 'composite_warning' => 'Advertencia: esta columna forma parte de un índice compuesto', - 'controller_name' => 'Nombre del Controlador', - 'controller_name_hint' => 'Ejemplo. PageController, si se deja vacío, utilizará el controlador BREAD ', - 'create_bread_for_table' => 'Crear BREAD para la tabla :table', - 'create_migration' => '¿Crear migración para esta tabla?', - 'create_model_table' => '¿Crear un modelo para esta tabla?', - 'create_new_table' => 'Crear nueva tabla', - 'create_your_new_table' => 'Cree su nueva tabla', - 'default' => 'Defecto', - 'delete_bread' => 'Eliminar BREAD', + 'add_bread' => 'Añadir BREAD a esta tabla', + 'add_new_column' => 'Añadir nueva columna', + 'add_softdeletes' => 'Añadir Soft Deletes', + 'add_timestamps' => 'Añadir Timestamps', + 'already_exists' => 'ya existe', + 'already_exists_table' => 'Tabla :table ya existe', + 'bread_crud_actions' => 'Acciones BREAD / CRUD', + 'bread_info' => 'Información de BREAD', + 'column' => 'Columna', + 'composite_warning' => 'Advertencia: esta columna forma parte de un índice compuesto', + 'controller_name' => 'Nombre del Controlador', + 'controller_name_hint' => 'Ejemplo. PageController, si se deja vacío, utilizará el controlador BREAD ', + 'create_bread_for_table' => 'Crear BREAD para la tabla :table', + 'create_migration' => '¿Crear migración para esta tabla?', + 'create_model_table' => '¿Crear un modelo para esta tabla?', + 'create_new_table' => 'Crear nueva tabla', + 'create_your_new_table' => 'Cree su nueva tabla', + 'default' => 'Defecto', + 'delete_bread' => 'Eliminar BREAD', 'delete_bread_before_table' => 'Asegúrese de quitar el BREAD de esta tabla antes de borrar la tabla.', - 'delete_table_bread_conf' => 'Sí, retire el BREAD', - 'delete_table_bread_quest' => '¿Está seguro de que desea eliminar el BREAD para la tabla :table?', - 'delete_table_confirm' => 'Sí, borrar esta tabla', - 'delete_table_question' => '¿Está seguro de que desea eliminar la tabla :table?', - 'description' => 'Descripción', - 'display_name' => 'Nombre para mostrar', - 'display_name_plural' => 'Nombre de visualización (Plural)', - 'display_name_singular' => 'Nombre de visualización (Singular)', - 'edit_bread' => 'Editar BREAD', - 'edit_bread_for_table' => 'Editar BREAD para la tabla :table', - 'edit_rows' => 'Editar las filas de la tabla siguiente:', - 'edit_table' => 'Editar la tabla siguiente:', - 'edit_table_not_exist' => 'La tabla que desea editar no existe', - 'error_creating_bread' => 'Lo siento, parece que puede haber habido un problema al crear el BREAD', - 'error_removing_bread' => 'Lo siento, parece que hubo un problema al eliminar el BREAD', - 'error_updating_bread' => 'Lo siento, parece que puede haber habido un problema al actualizar el BREAD', - 'extra' => 'Extra', - 'field' => 'Campo', - 'field_safe_failed' => 'No se pudo guardar el campo :field, ¡Estamos retrocediendo! ', - 'generate_permissions' => 'Generar permisos', - 'icon_class' => 'Icono a utilizar para esta tabla', - 'icon_hint' => 'Icono (opcional) Utilice una ', - 'icon_hint2' => 'Voyager Font Class', - 'index' => 'ÍNDICE', - 'input_type' => 'Tipo de entrada', - 'key' => 'Clave', - 'model_class' => 'Nombre de clase del modelo', - 'model_name' => 'Nombre del modelo', - 'model_name_ph' => 'ej. \App\Models\User, si se deja vacío intentará usar el nombre de la tabla ', - 'name_warning' => 'Por favor, nombre la columna antes de añadir un índice', - 'no_composites_warning' => 'Esta tabla tiene índices compuestos. Tenga en cuenta que en este momento'. + 'delete_table_bread_conf' => 'Sí, retire el BREAD', + 'delete_table_bread_quest' => '¿Está seguro de que desea eliminar el BREAD para la tabla :table?', + 'delete_table_confirm' => 'Sí, borrar esta tabla', + 'delete_table_question' => '¿Está seguro de que desea eliminar la tabla :table?', + 'description' => 'Descripción', + 'display_name' => 'Nombre para mostrar', + 'display_name_plural' => 'Nombre de visualización (Plural)', + 'display_name_singular' => 'Nombre de visualización (Singular)', + 'edit_bread' => 'Editar BREAD', + 'edit_bread_for_table' => 'Editar BREAD para la tabla :table', + 'edit_rows' => 'Editar las filas de la tabla siguiente:', + 'edit_table' => 'Editar la tabla siguiente:', + 'edit_table_not_exist' => 'La tabla que desea editar no existe', + 'error_creating_bread' => 'Lo siento, parece que puede haber habido un problema al crear el BREAD', + 'error_removing_bread' => 'Lo siento, parece que hubo un problema al eliminar el BREAD', + 'error_updating_bread' => 'Lo siento, parece que puede haber habido un problema al actualizar el BREAD', + 'extra' => 'Extra', + 'field' => 'Campo', + 'field_safe_failed' => 'No se pudo guardar el campo :field, ¡Estamos retrocediendo! ', + 'generate_permissions' => 'Generar permisos', + 'icon_class' => 'Icono a utilizar para esta tabla', + 'icon_hint' => 'Icono (opcional) Utilice una ', + 'icon_hint2' => 'Voyager Font Class', + 'index' => 'ÍNDICE', + 'input_type' => 'Tipo de entrada', + 'key' => 'Clave', + 'model_class' => 'Nombre de clase del modelo', + 'model_name' => 'Nombre del modelo', + 'model_name_ph' => 'ej. \App\Models\User, si se deja vacío intentará usar el nombre de la tabla ', + 'name_warning' => 'Por favor, nombre la columna antes de añadir un índice', + 'no_composites_warning' => 'Esta tabla tiene índices compuestos. Tenga en cuenta que en este momento'. 'no se admiten. Tenga cuidado al intentar agregar/quitar índices.', - 'null' => 'Nulo', - 'optional_details' => 'Detalles opcionales', - 'policy_class' => 'Clase de restricciones', - 'policy_name' => 'Nombre de restricciones', - 'policy_name_ph' => 'ej. \App\Policies\UserPolicy, si se deja vacío, intentará usar el valor predeterminado', - 'primary' => 'PRIMARIO', - 'server_pagination' => 'Paginación del servidor', - 'success_create_table' => 'Tabla :table creada exitosamente', + 'null' => 'Nulo', + 'optional_details' => 'Detalles opcionales', + 'policy_class' => 'Clase de restricciones', + 'policy_name' => 'Nombre de restricciones', + 'policy_name_ph' => 'ej. \App\Policies\UserPolicy, si se deja vacío, intentará usar el valor predeterminado', + 'primary' => 'PRIMARIO', + 'server_pagination' => 'Paginación del servidor', + 'success_create_table' => 'Tabla :table creada exitosamente', 'success_created_bread' => 'BREAD creado exitosamente', - 'success_delete_table' => 'Tabla :table eliminada exitosamente', - 'success_remove_bread' => 'BREAD de tipo :datatype borrado exitosamente', - 'success_update_bread' => 'Se actualizó correctamente el BREAD :datatype', - 'success_update_table' => 'Tabla :table actualizada exitosamente', - 'table_actions' => 'Acciones de la tabla', - 'table_columns' => 'Columnas de la tabla', - 'table_has_index' => 'La tabla ya tiene un índice primario.', - 'table_name' => 'Nombre de la tabla', - 'table_no_columns' => 'La tabla no tiene columnas ...', - 'type' => 'Tipo', - 'type_not_supported' => 'Este tipo no es compatible', - 'unique' => 'ÚNICO', - 'unknown_type' => 'Tipo desconocido', - 'update_table' => 'Actualizar tabla', - 'url_slug' => 'URL Slug (debe ser único)', - 'url_slug_ph' => 'URL slug (ej posts)', - 'visibility' => 'Visibilidad', + 'success_delete_table' => 'Tabla :table eliminada exitosamente', + 'success_remove_bread' => 'BREAD de tipo :datatype borrado exitosamente', + 'success_update_bread' => 'Se actualizó correctamente el BREAD :datatype', + 'success_update_table' => 'Tabla :table actualizada exitosamente', + 'table_actions' => 'Acciones de la tabla', + 'table_columns' => 'Columnas de la tabla', + 'table_has_index' => 'La tabla ya tiene un índice primario.', + 'table_name' => 'Nombre de la tabla', + 'table_no_columns' => 'La tabla no tiene columnas ...', + 'type' => 'Tipo', + 'type_not_supported' => 'Este tipo no es compatible', + 'unique' => 'ÚNICO', + 'unknown_type' => 'Tipo desconocido', + 'update_table' => 'Actualizar tabla', + 'url_slug' => 'URL Slug (debe ser único)', + 'url_slug_ph' => 'URL slug (ej posts)', + 'visibility' => 'Visibilidad', ], 'dimmer' => [ - 'page' => 'Página|Páginas', + 'page' => 'Página|Páginas', 'page_link_text' => 'Ver todas las páginas', - 'page_text' => 'Tiene :count :string en su base de datos. Haga clic en el botón de abajo para ver todas las páginas. ', - 'post' => 'Post|Posts', + 'page_text' => 'Tiene :count :string en su base de datos. Haga clic en el botón de abajo para ver todas las páginas. ', + 'post' => 'Post|Posts', 'post_link_text' => 'Ver todos los posts', - 'post_text' => 'Tiene :count :string en su base de datos. Haga clic en el botón de abajo para ver todos los posts. ', - 'user' => 'Usuario|Usuarios', + 'post_text' => 'Tiene :count :string en su base de datos. Haga clic en el botón de abajo para ver todos los posts. ', + 'user' => 'Usuario|Usuarios', 'user_link_text' => 'Ver todos los usuarios', - 'user_text' => 'Tiene :count :string en su base de datos. Haga clic en el botón de abajo para ver todos los usuarios. ', + 'user_text' => 'Tiene :count :string en su base de datos. Haga clic en el botón de abajo para ver todos los usuarios. ', ], 'form' => [ - 'field_password_keep' => 'Dejar vacío para mantener el mismo', + 'field_password_keep' => 'Dejar vacío para mantener el mismo', 'field_select_dd_relationship' => 'Asegúrese de configurar la relación apropiada en el método :method de'. 'la clase :class.', - 'type_checkbox' => 'Casilla de verificación', - 'type_codeeditor' => 'Editor de código', - 'type_file' => 'Archivo', - 'type_image' => 'Imagen', - 'type_radiobutton' => 'Botón de radio', - 'type_richtextbox' => 'Caja de texto enriquecido', + 'type_checkbox' => 'Casilla de verificación', + 'type_codeeditor' => 'Editor de código', + 'type_file' => 'Archivo', + 'type_image' => 'Imagen', + 'type_radiobutton' => 'Botón de radio', + 'type_richtextbox' => 'Caja de texto enriquecido', 'type_selectdropdown' => 'Seleccionar Desplegable', - 'type_textarea' => 'Área de texto', - 'type_textbox' => 'Caja de texto', + 'type_textarea' => 'Área de texto', + 'type_textbox' => 'Caja de texto', ], // DataTable translations from: https://github.com/DataTables/Plugins/tree/master/i18n 'datatable' => [ - 'sEmptyTable' => 'No hay datos disponibles en la tabla', - 'sInfo' => 'Mostrando _START_ a _END_ de _TOTAL_ entradas', - 'sInfoEmpty' => 'Mostrando 0 a 0 de 0 entradas', - 'sInfoFiltered' => '(Filtrada de _MAX_ entradas totales)', - 'sInfoPostFix' => '', - 'sInfoThousands' => ',', - 'sLengthMenu' => 'Mostrar _MENU_ entradas', + 'sEmptyTable' => 'No hay datos disponibles en la tabla', + 'sInfo' => 'Mostrando _START_ a _END_ de _TOTAL_ entradas', + 'sInfoEmpty' => 'Mostrando 0 a 0 de 0 entradas', + 'sInfoFiltered' => '(Filtrada de _MAX_ entradas totales)', + 'sInfoPostFix' => '', + 'sInfoThousands' => ',', + 'sLengthMenu' => 'Mostrar _MENU_ entradas', 'sLoadingRecords' => 'Cargando...', - 'sProcessing' => 'Procesando...', - 'sSearch' => 'Buscar:', - 'sZeroRecords' => 'No se encontraron registros coincidentes', - 'oPaginate' => [ - 'sFirst' => 'Primero', - 'sLast' => 'Último', - 'sNext' => 'Siguiente', + 'sProcessing' => 'Procesando...', + 'sSearch' => 'Buscar:', + 'sZeroRecords' => 'No se encontraron registros coincidentes', + 'oPaginate' => [ + 'sFirst' => 'Primero', + 'sLast' => 'Último', + 'sNext' => 'Siguiente', 'sPrevious' => 'Anterior', ], 'oAria' => [ - 'sSortAscending' => ': Activar para ordenar la columna ascendente', + 'sSortAscending' => ': Activar para ordenar la columna ascendente', 'sSortDescending' => ': Activar para ordenar la columna descendente', ], ], 'theme' => [ - 'footer_copyright' => 'Hecho con por', + 'footer_copyright' => 'Hecho con por', 'footer_copyright2' => 'Hecho con ron e incluso más ron', ], 'json' => [ - 'invalid' => 'Json inválido', - 'invalid_message' => 'Parece que has introducido algún JSON inválido.', - 'valid' => 'Json Válido', + 'invalid' => 'Json inválido', + 'invalid_message' => 'Parece que has introducido algún JSON inválido.', + 'valid' => 'Json Válido', 'validation_errors' => 'Errores de validación', ], 'analytics' => [ - 'by_pageview' => 'Por página', - 'by_sessions' => 'Por sesiones', - 'by_users' => 'Por usuarios', + 'by_pageview' => 'Por página', + 'by_sessions' => 'Por sesiones', + 'by_users' => 'Por usuarios', 'no_client_id' => 'Para ver los análisis, necesitará obtener una ID de cliente de Google Analytics y'. 'añadirla a su configuración para la clave google_analytics_client_id'. '. Obtenga su clave en la consola de desarrolladores de Google: ', - 'set_view' => 'Seleccionar una vista', - 'this_vs_last_week' => 'Esta semana vs la semana pasada', - 'this_vs_last_year' => 'Este Año vs el Año pasado', - 'top_browsers' => 'Principales Navegadores', - 'top_countries' => 'Principales países', + 'set_view' => 'Seleccionar una vista', + 'this_vs_last_week' => 'Esta semana vs la semana pasada', + 'this_vs_last_year' => 'Este Año vs el Año pasado', + 'top_browsers' => 'Principales Navegadores', + 'top_countries' => 'Principales países', 'various_visualizations' => 'Varias visualizaciones', ], 'error' => [ - 'symlink_created_text' => 'Acabamos de crear el enlace simbólico que faltaba para usted.', + 'symlink_created_text' => 'Acabamos de crear el enlace simbólico que faltaba para usted.', 'symlink_created_title' => 'Enlace simbólico de almacenamiento faltante creado', - 'symlink_failed_text' => 'No hemos podido generar el enlace simbólico perdido para su aplicación. '. + 'symlink_failed_text' => 'No hemos podido generar el enlace simbólico perdido para su aplicación. '. 'Parece que su proveedor de alojamiento no lo admite.', - 'symlink_failed_title' => 'No se pudo crear un enlace simbólico de almacenamiento faltante', + 'symlink_failed_title' => 'No se pudo crear un enlace simbólico de almacenamiento faltante', 'symlink_missing_button' => 'Arréglalo', - 'symlink_missing_text' => 'No pudimos encontrar un enlace simbólico de almacenamiento. Esto podría causar problemas con '. + 'symlink_missing_text' => 'No pudimos encontrar un enlace simbólico de almacenamiento. Esto podría causar problemas con '. 'la carga de archivos multimedia desde el navegador.', 'symlink_missing_title' => 'Falta el enlace simbólico de almacenamiento', ], diff --git a/lang/fr/voyager.php b/lang/fr/voyager.php index 957d4bfb9..bb419be37 100644 --- a/lang/fr/voyager.php +++ b/lang/fr/voyager.php @@ -9,139 +9,139 @@ ], 'generic' => [ - 'action' => 'Action', - 'actions' => 'Actions', - 'add' => 'Ajouter', - 'add_folder' => 'Ajouter un dossier', - 'add_new' => 'Ajouter nouveau', - 'all_done' => 'Terminé', - 'are_you_sure' => 'Etes-vous sûr', - 'are_you_sure_delete' => 'Etes-vous sûr que vous voulez supprimer', - 'auto_increment' => 'Incrémentation automatique', - 'browse' => 'Naviguer', - 'builder' => 'Constructeur', - 'bulk_delete' => 'Supprimer la sélection', - 'bulk_delete_confirm' => 'Oui, supprimer ces', - 'bulk_delete_nothing' => 'Vous n\'avez sélectionné aucun élément à supprimer', - 'cancel' => 'Annuler', - 'choose_type' => 'Choisir le type', - 'click_here' => 'Cliquez ici', - 'close' => 'Fermer', - 'created_at' => 'Créé le', - 'custom' => 'Personnaliser', - 'dashboard' => 'Tableau de bord', - 'database' => 'Base de données', - 'default' => 'Par défaut', - 'delete' => 'Supprimer', - 'delete_confirm' => 'Oui, supprimer !', - 'delete_question' => 'Êtes-vous sûr de vouloir supprimer', - 'delete_this_confirm' => 'Oui, le supprimer', - 'deselect_all' => 'Tout désélectionner', - 'download' => 'Télécharger', - 'edit' => 'Editer', - 'email' => 'Adresse email', - 'error_deleting' => 'Désolé, il semble qu\'il y ait eu un problème de suppression', - 'exception' => 'Exception', - 'featured' => 'Mis en avant', - 'field_does_not_exist' => 'Le champ n\'existe pas', - 'how_to_use' => 'Comment utiliser', - 'index' => 'Index', - 'internal_error' => 'Erreur interne', - 'items' => 'élément(s)', - 'keep_sidebar_open' => 'Lâchez l\'ancre ! (gardez la barre latérale ouverte)', - 'key' => 'Clé', - 'last_modified' => 'Dernière modification', - 'length' => 'longueur', - 'login' => 'S\'identifier', - 'media' => 'Média', - 'menu_builder' => 'Constructeur de menu', - 'move' => 'Déplacer', - 'name' => 'Nom', - 'new' => 'Nouveau', - 'no' => 'Non', - 'no_thanks' => 'Non merci', - 'not_null' => 'Pas nul', - 'options' => 'Options', - 'password' => 'Mot de passe', - 'permissions' => 'Permissions', - 'profile' => 'Profil', - 'public_url' => 'URL publique', - 'read' => 'Lire', - 'rename' => 'renommer', - 'required' => 'Obligatoire', - 'return_to_list' => 'Retourner à la liste', - 'route' => 'Route', - 'save' => 'Enregistrer', - 'search' => 'Chercher', - 'select_all' => 'Tout sélectionner', - 'settings' => 'Paramètres', - 'showing_entries' => 'Affichage :from à :to de :all entrées|Affichage :from à :to de :all entrées', - 'submit' => 'Soumettre', + 'action' => 'Action', + 'actions' => 'Actions', + 'add' => 'Ajouter', + 'add_folder' => 'Ajouter un dossier', + 'add_new' => 'Ajouter nouveau', + 'all_done' => 'Terminé', + 'are_you_sure' => 'Etes-vous sûr', + 'are_you_sure_delete' => 'Etes-vous sûr que vous voulez supprimer', + 'auto_increment' => 'Incrémentation automatique', + 'browse' => 'Naviguer', + 'builder' => 'Constructeur', + 'bulk_delete' => 'Supprimer la sélection', + 'bulk_delete_confirm' => 'Oui, supprimer ces', + 'bulk_delete_nothing' => 'Vous n\'avez sélectionné aucun élément à supprimer', + 'cancel' => 'Annuler', + 'choose_type' => 'Choisir le type', + 'click_here' => 'Cliquez ici', + 'close' => 'Fermer', + 'created_at' => 'Créé le', + 'custom' => 'Personnaliser', + 'dashboard' => 'Tableau de bord', + 'database' => 'Base de données', + 'default' => 'Par défaut', + 'delete' => 'Supprimer', + 'delete_confirm' => 'Oui, supprimer !', + 'delete_question' => 'Êtes-vous sûr de vouloir supprimer', + 'delete_this_confirm' => 'Oui, le supprimer', + 'deselect_all' => 'Tout désélectionner', + 'download' => 'Télécharger', + 'edit' => 'Editer', + 'email' => 'Adresse email', + 'error_deleting' => 'Désolé, il semble qu\'il y ait eu un problème de suppression', + 'exception' => 'Exception', + 'featured' => 'Mis en avant', + 'field_does_not_exist' => 'Le champ n\'existe pas', + 'how_to_use' => 'Comment utiliser', + 'index' => 'Index', + 'internal_error' => 'Erreur interne', + 'items' => 'élément(s)', + 'keep_sidebar_open' => 'Lâchez l\'ancre ! (gardez la barre latérale ouverte)', + 'key' => 'Clé', + 'last_modified' => 'Dernière modification', + 'length' => 'longueur', + 'login' => 'S\'identifier', + 'media' => 'Média', + 'menu_builder' => 'Constructeur de menu', + 'move' => 'Déplacer', + 'name' => 'Nom', + 'new' => 'Nouveau', + 'no' => 'Non', + 'no_thanks' => 'Non merci', + 'not_null' => 'Pas nul', + 'options' => 'Options', + 'password' => 'Mot de passe', + 'permissions' => 'Permissions', + 'profile' => 'Profil', + 'public_url' => 'URL publique', + 'read' => 'Lire', + 'rename' => 'renommer', + 'required' => 'Obligatoire', + 'return_to_list' => 'Retourner à la liste', + 'route' => 'Route', + 'save' => 'Enregistrer', + 'search' => 'Chercher', + 'select_all' => 'Tout sélectionner', + 'settings' => 'Paramètres', + 'showing_entries' => 'Affichage :from à :to de :all entrées|Affichage :from à :to de :all entrées', + 'submit' => 'Soumettre', 'successfully_added_new' => 'Ajouté avec succès', - 'successfully_deleted' => 'Supprimer avec succès', - 'successfully_updated' => 'Mis à jour avec succès', - 'timestamp' => 'Timestamp', - 'title' => 'Titre', - 'type' => 'Type', - 'unsigned' => 'Non signé (unsigned)', - 'unstick_sidebar' => 'Dé-ancrer la barre latérale', - 'update' => 'Mise à jour', - 'update_failed' => 'Echèc de la mise à jour', - 'upload' => 'Télécharger', - 'url' => 'URL', - 'view' => 'Vue', - 'viewing' => 'Affichage', - 'yes' => 'Oui', - 'yes_please' => 'Oui, s\'il vous plaît', + 'successfully_deleted' => 'Supprimer avec succès', + 'successfully_updated' => 'Mis à jour avec succès', + 'timestamp' => 'Timestamp', + 'title' => 'Titre', + 'type' => 'Type', + 'unsigned' => 'Non signé (unsigned)', + 'unstick_sidebar' => 'Dé-ancrer la barre latérale', + 'update' => 'Mise à jour', + 'update_failed' => 'Echèc de la mise à jour', + 'upload' => 'Télécharger', + 'url' => 'URL', + 'view' => 'Vue', + 'viewing' => 'Affichage', + 'yes' => 'Oui', + 'yes_please' => 'Oui, s\'il vous plaît', ], 'login' => [ - 'loggingin' => 'Se connecter', + 'loggingin' => 'Se connecter', 'signin_below' => 'Connectez-vous ci-dessous :', - 'welcome' => 'Bienvenue dans Voyager, l\' administration qui manquait à Laravel', + 'welcome' => 'Bienvenue dans Voyager, l\' administration qui manquait à Laravel', ], 'profile' => [ - 'avatar' => 'Avatar', - 'edit' => 'Editer mon profil', - 'edit_user' => 'Editer l\'utilisateur', - 'password' => 'Mot de passe', + 'avatar' => 'Avatar', + 'edit' => 'Editer mon profil', + 'edit_user' => 'Editer l\'utilisateur', + 'password' => 'Mot de passe', 'password_hint' => 'Laissez vide pour garder le même', - 'role' => 'Rôle', - 'user_role' => 'Rôle utilisateur', + 'role' => 'Rôle', + 'user_role' => 'Rôle utilisateur', ], 'settings' => [ 'usage_help' => 'Vous pouvez obtenir la valeur de chaque paramètre n\'importe où sur votre site en '. 'appelant', - 'save' => 'Enregistrer les paramètres', - 'new' => 'Nouveau paramètre', - 'help_name' => 'Nom du paramètre, exemple : Titre de l\'espace d\'administration', - 'help_key' => 'Clé de paramètre, exemple : titre_admin', + 'save' => 'Enregistrer les paramètres', + 'new' => 'Nouveau paramètre', + 'help_name' => 'Nom du paramètre, exemple : Titre de l\'espace d\'administration', + 'help_key' => 'Clé de paramètre, exemple : titre_admin', 'help_option' => '(en option. S\'applique uniquement à certains types, comme un menu déroulant ou un '. 'bouton radio)', - 'add_new' => 'Ajouter un nouveau paramètre', - 'delete_question' => 'Êtes-vous sûr de vouloir supprimer le paramètre : :setting ?', - 'delete_confirm' => 'Oui, supprimer ce paramètre', + 'add_new' => 'Ajouter un nouveau paramètre', + 'delete_question' => 'Êtes-vous sûr de vouloir supprimer le paramètre : :setting ?', + 'delete_confirm' => 'Oui, supprimer ce paramètre', 'successfully_created' => 'Paramètres créés avec succès', - 'successfully_saved' => 'Paramètres enregistrés avec succès', + 'successfully_saved' => 'Paramètres enregistrés avec succès', 'successfully_deleted' => 'Paramètres supprimés avec succès', - 'already_at_top' => 'Déjà en haut de la liste', - 'already_at_bottom' => 'Déjà en bas de la liste', - 'moved_order_up' => 'Trier le paramètre :name en ordre croissant', - 'moved_order_down' => 'Trier le paramètre :name en ordre décroissant', + 'already_at_top' => 'Déjà en haut de la liste', + 'already_at_bottom' => 'Déjà en bas de la liste', + 'moved_order_up' => 'Trier le paramètre :name en ordre croissant', + 'moved_order_down' => 'Trier le paramètre :name en ordre décroissant', 'successfully_removed' => 'Valeur :name supprimée avec succès', ], 'media' => [ - 'add_new_folder' => 'Ajouter un dossier', - 'audio_support' => 'Votre navigateur ne supporte pas l\'élément audio.', - 'create_new_folder' => 'Créer un nouveau dossier', + 'add_new_folder' => 'Ajouter un dossier', + 'audio_support' => 'Votre navigateur ne supporte pas l\'élément audio.', + 'create_new_folder' => 'Créer un nouveau dossier', 'delete_folder_question' => 'La suppression d\'un dossier supprime tout son contenu !', - 'destination_folder' => 'Dossier de destination', - 'drag_drop_info' => 'Glissez/déposez des fichiers ou cliquez ci-dessous pour télécharger', - 'error_already_exists' => 'Désolé, il existe déjà un fichier/dossier avec ce nom dans ce dossier.', - 'error_creating_dir' => 'Désolé, quelque chose n\'a pas fonctionné lors de la création du dossier, '. + 'destination_folder' => 'Dossier de destination', + 'drag_drop_info' => 'Glissez/déposez des fichiers ou cliquez ci-dessous pour télécharger', + 'error_already_exists' => 'Désolé, il existe déjà un fichier/dossier avec ce nom dans ce dossier.', + 'error_creating_dir' => 'Désolé, quelque chose n\'a pas fonctionné lors de la création du dossier, '. 'vérifiez les autorisations SVP', 'error_deleting_file' => 'Désolé, quelque chose n\'a pas fonctionné lors de la suppression du fichier, '. 'vérifiez les autorisations SVP', @@ -151,248 +151,248 @@ 'ou supprimez le fichier/dossier existant.', 'error_moving' => 'Désolé, il y a un problème pour déplacer ce fichier/dossier, '. 'vérifiez les autorisations SVP', - 'error_uploading' => 'Échec du téléchargement : une erreur inconnue s\'est produite !', + 'error_uploading' => 'Échec du téléchargement : une erreur inconnue s\'est produite !', 'folder_exists_already' => 'Désolé, ce dossier existe déjà. Supprimez-le pour le récréer ou '. 'choisissez un autre nom', - 'image_does_not_exist' => 'L\'image n\'existe pas', - 'image_removed' => 'Image supprimée', - 'library' => 'Médiathèque', - 'loading' => 'CHARGEMENT DES FICHIERS MULTIMEDIA', - 'move_file_folder' => 'Déplacer fichier/dossier', - 'new_file_folder' => 'Nouveau nom de fichier/dossier', - 'new_folder_name' => 'Nouveau nom de dossier', - 'no_files_here' => 'Nouveau fichier ici.', - 'no_files_in_folder' => 'Il n\'y a pas de fichier dans ce dossier.', - 'nothing_selected' => 'Aucun fichier ou dossier sélectionné', - 'rename_file_folder' => 'renommer le fichier/dossier', + 'image_does_not_exist' => 'L\'image n\'existe pas', + 'image_removed' => 'Image supprimée', + 'library' => 'Médiathèque', + 'loading' => 'CHARGEMENT DES FICHIERS MULTIMEDIA', + 'move_file_folder' => 'Déplacer fichier/dossier', + 'new_file_folder' => 'Nouveau nom de fichier/dossier', + 'new_folder_name' => 'Nouveau nom de dossier', + 'no_files_here' => 'Nouveau fichier ici.', + 'no_files_in_folder' => 'Il n\'y a pas de fichier dans ce dossier.', + 'nothing_selected' => 'Aucun fichier ou dossier sélectionné', + 'rename_file_folder' => 'renommer le fichier/dossier', 'success_uploaded_file' => 'Téléchargement du fichier réussi !', - 'success_uploading' => 'Image téléchargée avec succès !', - 'uploading_wrong_type' => 'Échec du téléchargement : format de fichier non pris en charge ou volume trop '. + 'success_uploading' => 'Image téléchargée avec succès !', + 'uploading_wrong_type' => 'Échec du téléchargement : format de fichier non pris en charge ou volume trop '. 'important !', 'video_support' => 'Votre navigateur ne prend pas en charge la balise vidéo.', ], 'menu_builder' => [ - 'color' => 'Couleur en RVB ou hexadécimal (optionnel)', - 'color_ph' => 'Couleur (ex. #ffffff ou rgb(255, 255, 255)', - 'create_new_item' => 'Créer un nouvel élément de menu', - 'delete_item_confirm' => 'Oui, supprimez cet élément de menu', + 'color' => 'Couleur en RVB ou hexadécimal (optionnel)', + 'color_ph' => 'Couleur (ex. #ffffff ou rgb(255, 255, 255)', + 'create_new_item' => 'Créer un nouvel élément de menu', + 'delete_item_confirm' => 'Oui, supprimez cet élément de menu', 'delete_item_question' => 'Êtes-vous sûr de vouloir supprimer cet élément de menu ?', - 'drag_drop_info' => 'Glissez/déposez les éléments du menu ci-dessous pour les réorganiser.', - 'dynamic_route' => 'Route dynamique', - 'edit_item' => 'Editer l\'élément du menu', - 'icon_class' => 'Icône pour l\'élément de menu (utilisez la ', - 'icon_class2' => 'police d\'icône Voyager)', - 'icon_class_ph' => 'Classe d\'icône (optionnel)', - 'item_route' => 'Route pour l\'élément de menu', - 'item_title' => 'Titre pour l\'élément de menu', - 'link_type' => 'Type de lien', - 'new_menu_item' => 'Nouvel élément de menu', - 'open_in' => 'Ouvrir dans', - 'open_new' => 'Nouvel onglet/fenêtre', - 'open_same' => 'Même onglet/fenêtre', - 'route_parameter' => 'Paramètres de Route (le cas échéant)', - 'static_url' => 'URL statique', + 'drag_drop_info' => 'Glissez/déposez les éléments du menu ci-dessous pour les réorganiser.', + 'dynamic_route' => 'Route dynamique', + 'edit_item' => 'Editer l\'élément du menu', + 'icon_class' => 'Icône pour l\'élément de menu (utilisez la ', + 'icon_class2' => 'police d\'icône Voyager)', + 'icon_class_ph' => 'Classe d\'icône (optionnel)', + 'item_route' => 'Route pour l\'élément de menu', + 'item_title' => 'Titre pour l\'élément de menu', + 'link_type' => 'Type de lien', + 'new_menu_item' => 'Nouvel élément de menu', + 'open_in' => 'Ouvrir dans', + 'open_new' => 'Nouvel onglet/fenêtre', + 'open_same' => 'Même onglet/fenêtre', + 'route_parameter' => 'Paramètres de Route (le cas échéant)', + 'static_url' => 'URL statique', 'successfully_created' => 'Nouvel élément de menu créé avec succès.', 'successfully_deleted' => 'Elément de menu supprimé avec succès.', 'successfully_updated' => 'Elément de menu édité avec succès.', - 'updated_order' => 'Elément de menu réordonné avec succès.', - 'url' => 'URL pour l\'élément de menu', - 'usage_hint' => 'Vous pouvez afficher un menu n\'importe où sur le site en appelant|Vous '. + 'updated_order' => 'Elément de menu réordonné avec succès.', + 'url' => 'URL pour l\'élément de menu', + 'usage_hint' => 'Vous pouvez afficher un menu n\'importe où sur le site en appelant|Vous '. 'pouvez afficher ce menu n\'importe où sur le site en appelant', ], 'post' => [ - 'category' => 'Catégorie de l\'article', - 'content' => 'Contenu de l\'article', - 'details' => 'Détails de l\'article', - 'excerpt' => 'Extrait courte description de l\'article', - 'image' => 'Image de l\'article', + 'category' => 'Catégorie de l\'article', + 'content' => 'Contenu de l\'article', + 'details' => 'Détails de l\'article', + 'excerpt' => 'Extrait courte description de l\'article', + 'image' => 'Image de l\'article', 'meta_description' => 'Meta déscription', - 'meta_keywords' => 'Meta mots clés', - 'new' => 'Créé un nouvel article', - 'seo_content' => 'Contenu SEO', - 'seo_title' => 'Titre SEO', - 'slug' => 'Slug URL', - 'status' => 'Statut de l\'article', - 'status_draft' => 'brouillon', - 'status_pending' => 'en attente', + 'meta_keywords' => 'Meta mots clés', + 'new' => 'Créé un nouvel article', + 'seo_content' => 'Contenu SEO', + 'seo_title' => 'Titre SEO', + 'slug' => 'Slug URL', + 'status' => 'Statut de l\'article', + 'status_draft' => 'brouillon', + 'status_pending' => 'en attente', 'status_published' => 'publié', - 'title' => 'Titre de l\'article', - 'title_sub' => 'Le titre de votre article', - 'update' => 'Mettre à jour l\'article', + 'title' => 'Titre de l\'article', + 'title_sub' => 'Le titre de votre article', + 'update' => 'Mettre à jour l\'article', ], 'database' => [ - 'add_bread' => 'Ajouter le BREAD à cette table', - 'add_new_column' => 'Ajouter une nouvelle colonne', - 'add_softdeletes' => 'Ajouter la suppression en cascade (soft deletes)', - 'add_timestamps' => 'Ajouter les Timestamps', - 'already_exists' => 'existe déjà', + 'add_bread' => 'Ajouter le BREAD à cette table', + 'add_new_column' => 'Ajouter une nouvelle colonne', + 'add_softdeletes' => 'Ajouter la suppression en cascade (soft deletes)', + 'add_timestamps' => 'Ajouter les Timestamps', + 'already_exists' => 'existe déjà', 'already_exists_table' => 'La table :table existe déjà', - 'bread_crud_actions' => 'Actions du BREAD/CRUD', - 'bread_info' => 'Information du BREAD', - 'column' => 'Colonne', - 'composite_warning' => 'Avertissement : cette colonne fait partie d\'un indice composite '. + 'bread_crud_actions' => 'Actions du BREAD/CRUD', + 'bread_info' => 'Information du BREAD', + 'column' => 'Colonne', + 'composite_warning' => 'Avertissement : cette colonne fait partie d\'un indice composite '. '(composite index)', - 'controller_name' => 'Nom du controleur', - 'controller_name_hint' => 'exemple : PageController. Si laissé vide, utilisera le contrôleur BREAD', - 'create_bread_for_table' => 'Créer un BREAD pour la table :table', - 'create_migration' => 'Créer une migration pour cette table ?', - 'create_model_table' => 'Créer un modèle pour cette table ?', - 'create_new_table' => 'Créer une nouvelle table', - 'create_your_new_table' => 'Créez votre nouvelle table', - 'default' => 'Par défaut', - 'delete_bread' => 'Supprimer le BREAD', + 'controller_name' => 'Nom du controleur', + 'controller_name_hint' => 'exemple : PageController. Si laissé vide, utilisera le contrôleur BREAD', + 'create_bread_for_table' => 'Créer un BREAD pour la table :table', + 'create_migration' => 'Créer une migration pour cette table ?', + 'create_model_table' => 'Créer un modèle pour cette table ?', + 'create_new_table' => 'Créer une nouvelle table', + 'create_your_new_table' => 'Créez votre nouvelle table', + 'default' => 'Par défaut', + 'delete_bread' => 'Supprimer le BREAD', 'delete_bread_before_table' => 'Assurez-vous de supprimer le BREAD avant de supprimer sa table.', - 'delete_table_bread_conf' => 'Oui, supprimer le BREAD', - 'delete_table_bread_quest' => 'Êtes-vous sûr de vouloir supprimer le BREAD de la table : :table ?', - 'delete_table_confirm' => 'Oui, supprimer cette table', - 'delete_table_question' => 'Êtes-vous sûr de vouloir supprimer la table : :table ?', - 'description' => 'Description', - 'display_name' => 'Nom affiché', - 'display_name_plural' => 'Nom affiché (au pluriel)', - 'display_name_singular' => 'Nom affiché (au singulier)', - 'edit_bread' => 'Editer le BREAD', - 'edit_bread_for_table' => 'Editer le BREAD de la table : :table', - 'edit_rows' => 'Modifier les rangs pour la table :table ci-dessous', - 'edit_table' => 'Editer la table :table ci-dessous', - 'edit_table_not_exist' => 'La table que vous souhaitez modifier n\'existe pas', - 'error_creating_bread' => 'Désolé, il semble qu\'il y ait eu un problème pour créer ce BREAD', - 'error_removing_bread' => 'Désolé, il semble qu\'il y ait eu un problème pour supprimer ce BREAD', - 'error_updating_bread' => 'Désolé, il semble qu\'il y ait eu un problème pour mettre à jour ce BREAD', - 'extra' => 'Extra', - 'field' => 'Champ', - 'field_safe_failed' => 'Échec de l\'enregistrement du champ : :field. Nous sommes revenu en arrière !', - 'generate_permissions' => 'Générer les permissions', - 'icon_class' => 'Icône à utiliser pour cette table', - 'icon_hint' => 'Icône (optionel), utiliser une', - 'icon_hint2' => 'police d\'icône Voyager', - 'index' => 'INDEX', - 'input_type' => 'Type d\'entrée (input)', - 'key' => 'Clé', - 'model_class' => 'Nom de la classe du modèle (model)', - 'model_name' => 'Nom du modèle (model)', - 'model_name_ph' => 'exemple : \App\Models\User. Si laissé vide, essayera d\'utiliser le nom de la table', - 'name_warning' => 'Nommez la colonne avant d\'ajouter un index SVP', - 'no_composites_warning' => 'Cette table comporte des index composites. Notez qu\'ils ne sont pas pris en '. + 'delete_table_bread_conf' => 'Oui, supprimer le BREAD', + 'delete_table_bread_quest' => 'Êtes-vous sûr de vouloir supprimer le BREAD de la table : :table ?', + 'delete_table_confirm' => 'Oui, supprimer cette table', + 'delete_table_question' => 'Êtes-vous sûr de vouloir supprimer la table : :table ?', + 'description' => 'Description', + 'display_name' => 'Nom affiché', + 'display_name_plural' => 'Nom affiché (au pluriel)', + 'display_name_singular' => 'Nom affiché (au singulier)', + 'edit_bread' => 'Editer le BREAD', + 'edit_bread_for_table' => 'Editer le BREAD de la table : :table', + 'edit_rows' => 'Modifier les rangs pour la table :table ci-dessous', + 'edit_table' => 'Editer la table :table ci-dessous', + 'edit_table_not_exist' => 'La table que vous souhaitez modifier n\'existe pas', + 'error_creating_bread' => 'Désolé, il semble qu\'il y ait eu un problème pour créer ce BREAD', + 'error_removing_bread' => 'Désolé, il semble qu\'il y ait eu un problème pour supprimer ce BREAD', + 'error_updating_bread' => 'Désolé, il semble qu\'il y ait eu un problème pour mettre à jour ce BREAD', + 'extra' => 'Extra', + 'field' => 'Champ', + 'field_safe_failed' => 'Échec de l\'enregistrement du champ : :field. Nous sommes revenu en arrière !', + 'generate_permissions' => 'Générer les permissions', + 'icon_class' => 'Icône à utiliser pour cette table', + 'icon_hint' => 'Icône (optionel), utiliser une', + 'icon_hint2' => 'police d\'icône Voyager', + 'index' => 'INDEX', + 'input_type' => 'Type d\'entrée (input)', + 'key' => 'Clé', + 'model_class' => 'Nom de la classe du modèle (model)', + 'model_name' => 'Nom du modèle (model)', + 'model_name_ph' => 'exemple : \App\Models\User. Si laissé vide, essayera d\'utiliser le nom de la table', + 'name_warning' => 'Nommez la colonne avant d\'ajouter un index SVP', + 'no_composites_warning' => 'Cette table comporte des index composites. Notez qu\'ils ne sont pas pris en '. 'charge pour le moment. Faites attention lorsque vous essayez '. 'd\'ajouter/supprimer des index.', - 'null' => 'Null', - 'optional_details' => 'Détails facultatifs', - 'primary' => 'PRIMARY', - 'server_pagination' => 'Pagination côté serveur', - 'success_create_table' => 'Table : :table créée avec succès', + 'null' => 'Null', + 'optional_details' => 'Détails facultatifs', + 'primary' => 'PRIMARY', + 'server_pagination' => 'Pagination côté serveur', + 'success_create_table' => 'Table : :table créée avec succès', 'success_created_bread' => 'Nouveau BREAD créé avec succès', - 'success_delete_table' => 'Table : :table supprimée avec succès', - 'success_remove_bread' => ':datatype BREAD supprimé avec succès', - 'success_update_bread' => ':datatype BREAD mis à jour avec succès', - 'success_update_table' => 'Table :table mise à jour avec succès', - 'table_actions' => 'Actions sur le tableau', - 'table_columns' => 'Colonnes de table', - 'table_has_index' => 'La table comporte déjà un indice primaire (primary index).', - 'table_name' => 'Nom de la table', - 'table_no_columns' => 'La table n\a pas de colonnes...', - 'type' => 'Type', - 'type_not_supported' => 'Ce type n\'est pas supporté', - 'unique' => 'UNIQUE', - 'unknown_type' => 'Type inconnu', - 'update_table' => 'Mettre la table à jour', - 'url_slug' => 'URL Slug (doit être unique)', - 'url_slug_ph' => 'URL slug (exemple : articles)', - 'visibility' => 'Visibilité', + 'success_delete_table' => 'Table : :table supprimée avec succès', + 'success_remove_bread' => ':datatype BREAD supprimé avec succès', + 'success_update_bread' => ':datatype BREAD mis à jour avec succès', + 'success_update_table' => 'Table :table mise à jour avec succès', + 'table_actions' => 'Actions sur le tableau', + 'table_columns' => 'Colonnes de table', + 'table_has_index' => 'La table comporte déjà un indice primaire (primary index).', + 'table_name' => 'Nom de la table', + 'table_no_columns' => 'La table n\a pas de colonnes...', + 'type' => 'Type', + 'type_not_supported' => 'Ce type n\'est pas supporté', + 'unique' => 'UNIQUE', + 'unknown_type' => 'Type inconnu', + 'update_table' => 'Mettre la table à jour', + 'url_slug' => 'URL Slug (doit être unique)', + 'url_slug_ph' => 'URL slug (exemple : articles)', + 'visibility' => 'Visibilité', ], 'dimmer' => [ - 'page' => 'Page|Pages', + 'page' => 'Page|Pages', 'page_link_text' => 'Voir toutes les pages', - 'page_text' => 'Vous avez :count :string enregistrées. Cliquez sur le bouton ci-dessous pour afficher '. + 'page_text' => 'Vous avez :count :string enregistrées. Cliquez sur le bouton ci-dessous pour afficher '. 'toutes les pages.', - 'post' => 'Article|Articles', + 'post' => 'Article|Articles', 'post_link_text' => 'Voir tous les articles', - 'post_text' => 'Vous avez :count :string enregistrés. Cliquez sur le bouton ci-dessous pour afficher '. + 'post_text' => 'Vous avez :count :string enregistrés. Cliquez sur le bouton ci-dessous pour afficher '. 'tous les articles.', - 'user' => 'Utilisateur|Utilisateur', + 'user' => 'Utilisateur|Utilisateur', 'user_link_text' => 'Voir tous les utilisateurs', - 'user_text' => 'Vous avez :count :string enregistrés. Cliquez sur le bouton ci-dessous pour afficher '. + 'user_text' => 'Vous avez :count :string enregistrés. Cliquez sur le bouton ci-dessous pour afficher '. 'tous les utilisateurs.', ], 'form' => [ - 'field_password_keep' => 'Laissez vide pour garder le même', + 'field_password_keep' => 'Laissez vide pour garder le même', 'field_select_dd_relationship' => 'Assurez-vous de configurer la relation appropriée dans la méthode :method '. 'de la classe :class.', - 'type_checkbox' => 'Case à cocher', - 'type_codeeditor' => 'Editeur de code', - 'type_file' => 'Fichier', - 'type_image' => 'Image', - 'type_radiobutton' => 'Bouton radio', - 'type_richtextbox' => 'Champ texte enrichie', + 'type_checkbox' => 'Case à cocher', + 'type_codeeditor' => 'Editeur de code', + 'type_file' => 'Fichier', + 'type_image' => 'Image', + 'type_radiobutton' => 'Bouton radio', + 'type_richtextbox' => 'Champ texte enrichie', 'type_selectdropdown' => 'Menu déroulant', - 'type_textarea' => 'Aire de texte', - 'type_textbox' => 'Champ texte', + 'type_textarea' => 'Aire de texte', + 'type_textbox' => 'Champ texte', ], // DataTable translations from: https://github.com/DataTables/Plugins/tree/master/i18n 'datatable' => [ - 'sEmptyTable' => 'Aucune donnée disponible', - 'sInfo' => 'Affichage _START_ à _END_ de _TOTAL_ entréees', - 'sInfoEmpty' => 'Affichage 0 à 0 de 0 entréees', - 'sInfoFiltered' => '(filtré de _MAX_ entréees totales)', - 'sInfoPostFix' => '', - 'sInfoThousands' => ' ', - 'sLengthMenu' => 'Afficher les entréees : _MENU_', + 'sEmptyTable' => 'Aucune donnée disponible', + 'sInfo' => 'Affichage _START_ à _END_ de _TOTAL_ entréees', + 'sInfoEmpty' => 'Affichage 0 à 0 de 0 entréees', + 'sInfoFiltered' => '(filtré de _MAX_ entréees totales)', + 'sInfoPostFix' => '', + 'sInfoThousands' => ' ', + 'sLengthMenu' => 'Afficher les entréees : _MENU_', 'sLoadingRecords' => 'Chargement...', - 'sProcessing' => 'En traitement...', - 'sSearch' => 'Recherche :', - 'sZeroRecords' => 'Aucun enregistrements correspondants trouvés', - 'oPaginate' => [ - 'sFirst' => 'Premier', - 'sLast' => 'Dernier', - 'sNext' => 'Suivant', + 'sProcessing' => 'En traitement...', + 'sSearch' => 'Recherche :', + 'sZeroRecords' => 'Aucun enregistrements correspondants trouvés', + 'oPaginate' => [ + 'sFirst' => 'Premier', + 'sLast' => 'Dernier', + 'sNext' => 'Suivant', 'sPrevious' => 'Précedent', ], 'oAria' => [ - 'sSortAscending' => ': Trier la colonne en ordre croissant', + 'sSortAscending' => ': Trier la colonne en ordre croissant', 'sSortDescending' => ': Trier la colonne en ordre décroissant', ], ], 'theme' => [ - 'footer_copyright' => 'Fait avec par', + 'footer_copyright' => 'Fait avec par', 'footer_copyright2' => 'Fait avec du rhum et encore plus de rhum :p', ], 'json' => [ - 'invalid' => 'Json non valide', - 'invalid_message' => 'Il semble que votre JSON soit non valide.', - 'valid' => 'Json valide', + 'invalid' => 'Json non valide', + 'invalid_message' => 'Il semble que votre JSON soit non valide.', + 'valid' => 'Json valide', 'validation_errors' => 'Erreurs de validation', ], 'analytics' => [ - 'by_pageview' => 'Par pages vues', - 'by_sessions' => 'Par sessions', - 'by_users' => 'Par utilisateurs', + 'by_pageview' => 'Par pages vues', + 'by_sessions' => 'Par sessions', + 'by_users' => 'Par utilisateurs', 'no_client_id' => 'Pour afficher Google Analytics, vous devrez obtenir un identifiant et '. 'l\'ajouter à vos paramètres clé : google_analytics_client_id. '. 'Obtenez une clé dans l\'espace développeur Google :', - 'set_view' => 'Sélectionner une vue', - 'this_vs_last_week' => 'Cette semaine contre la semaine dernière', - 'this_vs_last_year' => 'Cette année contre l\'année dernière', - 'top_browsers' => 'Top navigateurs', - 'top_countries' => 'Top pays', + 'set_view' => 'Sélectionner une vue', + 'this_vs_last_week' => 'Cette semaine contre la semaine dernière', + 'this_vs_last_year' => 'Cette année contre l\'année dernière', + 'top_browsers' => 'Top navigateurs', + 'top_countries' => 'Top pays', 'various_visualizations' => 'Visualisations diverses', ], 'error' => [ - 'symlink_created_text' => 'Nous avons créé le lien symbolique manquant pour vous.', + 'symlink_created_text' => 'Nous avons créé le lien symbolique manquant pour vous.', 'symlink_created_title' => 'Le lien symbolique de stockage manquant a été créé', - 'symlink_failed_text' => 'Nous n\'avons pu généré le lien symbolique manquant pour votre application. '. + 'symlink_failed_text' => 'Nous n\'avons pu généré le lien symbolique manquant pour votre application. '. 'Il semble que votre hébergeur ne supporte pas cette fonction.', - 'symlink_failed_title' => 'Impossible de créer un lien symbolique de stockage manquant', + 'symlink_failed_title' => 'Impossible de créer un lien symbolique de stockage manquant', 'symlink_missing_button' => 'Le réparer !', - 'symlink_missing_text' => 'Nous n\'avons pu trouver le lien symbolique de stockage. '. + 'symlink_missing_text' => 'Nous n\'avons pu trouver le lien symbolique de stockage. '. 'Cela pourrait causer des problèmes de chargement des fichiers multimédias.', 'symlink_missing_title' => 'Le lien symbolique de stockage est manquant', ], diff --git a/lang/it/passwords.php b/lang/it/passwords.php index c7d8dc0b4..18bcf36d6 100644 --- a/lang/it/passwords.php +++ b/lang/it/passwords.php @@ -17,6 +17,6 @@ 'reset' => 'La tua password è stata reimpostata!', 'sent' => 'Abbiamo inviato per e-mail il link per reimpostare la password!', 'token' => 'Questo token di reimpostazione della password non è valido.', - 'user' => "Non riusciamo a trovare un utente con questo indirizzo e-mail.", + 'user' => 'Non riusciamo a trovare un utente con questo indirizzo e-mail.', ]; diff --git a/lang/it/voyager.php b/lang/it/voyager.php index c77d2db80..1e1d8772a 100644 --- a/lang/it/voyager.php +++ b/lang/it/voyager.php @@ -9,145 +9,145 @@ ], 'generic' => [ - 'action' => 'Azione', - 'actions' => 'Azioni', - 'add' => 'Aggiungi', - 'add_folder' => 'Aggiungi Cartella', - 'add_new' => 'Aggiungi Nuovo', - 'all_done' => 'Tutto Fatto', - 'are_you_sure' => 'Sei sicuro', - 'are_you_sure_delete' => 'Sei sicuro di voler eliminare', - 'auto_increment' => 'Incremento Automatico', - 'browse' => 'Sfoglia', - 'builder' => 'Costruttore', - 'bulk_delete' => 'Elimina in blocco', - 'bulk_delete_confirm' => 'Sì, elimina questi', - 'bulk_delete_nothing' => 'Non hai selezionato nulla da eliminare', - 'cancel' => 'Annulla', - 'choose_type' => 'Scegli il tipo', - 'click_here' => 'Clicca qui', - 'close' => 'Chiudi', - 'compass' => 'Bussola', - 'created_at' => 'Creato il', - 'custom' => 'Custom', - 'dashboard' => 'Bacheca', - 'database' => 'Database', - 'default' => 'Default', - 'delete' => 'Elimina', - 'delete_confirm' => 'Sì, elimina!', - 'delete_question' => 'Sei sicuro di volerlo eliminare', - 'delete_this_confirm' => 'Sì, eliminalo', - 'deselect_all' => 'Deseleziona TUTTO', - 'download' => 'Scarica', - 'edit' => 'Modifica', - 'email' => 'E-mail', - 'error_deleting' => 'Spiacenti sembra ci sia stato un problema durante l\'eliminazione', - 'exception' => 'Eccezione', - 'featured' => 'In primo piano', - 'field_does_not_exist' => 'Campo non esiste', - 'how_to_use' => 'Come Usare', - 'index' => 'Indice', - 'internal_error' => 'Errore interno', - 'items' => 'item(s)', - 'keep_sidebar_open' => 'Yarr! Calate le ancore! (e lascia la barra laterale aperta)', - 'key' => 'Chiave', - 'last_modified' => 'Ultima modifica', - 'length' => 'Lunghezza', - 'login' => 'Login', - 'media' => 'Media', - 'menu_builder' => 'Costruttore del menù', - 'move' => 'Sposta', - 'name' => 'Nome', - 'new' => 'Nuovo', - 'no' => 'No', - 'no_thanks' => 'No Grazie', - 'not_null' => 'Non Null', - 'options' => 'Opzioni', - 'password' => 'Password', - 'permissions' => 'Permessi', - 'profile' => 'Profilo', - 'public_url' => 'URL Pubblico', - 'read' => 'Leggi', - 'rename' => 'Rinomina', - 'required' => 'Richiesto', - 'return_to_list' => 'Torna alla Lista', - 'route' => 'Percorso', - 'save' => 'Salva', - 'search' => 'Cerca', - 'select_all' => 'Seleziona Tutto', - 'select_group' => 'Seleziona un Gruppo Esistente o Aggiungi un Nuovo Gruppo', - 'settings' => 'Impostazioni', - 'showing_entries' => 'Visualizzazione dei risultati da :from a :to di :all|Visualizzazione dei risultati da :from a :to di :all', - 'submit' => 'Invia', + 'action' => 'Azione', + 'actions' => 'Azioni', + 'add' => 'Aggiungi', + 'add_folder' => 'Aggiungi Cartella', + 'add_new' => 'Aggiungi Nuovo', + 'all_done' => 'Tutto Fatto', + 'are_you_sure' => 'Sei sicuro', + 'are_you_sure_delete' => 'Sei sicuro di voler eliminare', + 'auto_increment' => 'Incremento Automatico', + 'browse' => 'Sfoglia', + 'builder' => 'Costruttore', + 'bulk_delete' => 'Elimina in blocco', + 'bulk_delete_confirm' => 'Sì, elimina questi', + 'bulk_delete_nothing' => 'Non hai selezionato nulla da eliminare', + 'cancel' => 'Annulla', + 'choose_type' => 'Scegli il tipo', + 'click_here' => 'Clicca qui', + 'close' => 'Chiudi', + 'compass' => 'Bussola', + 'created_at' => 'Creato il', + 'custom' => 'Custom', + 'dashboard' => 'Bacheca', + 'database' => 'Database', + 'default' => 'Default', + 'delete' => 'Elimina', + 'delete_confirm' => 'Sì, elimina!', + 'delete_question' => 'Sei sicuro di volerlo eliminare', + 'delete_this_confirm' => 'Sì, eliminalo', + 'deselect_all' => 'Deseleziona TUTTO', + 'download' => 'Scarica', + 'edit' => 'Modifica', + 'email' => 'E-mail', + 'error_deleting' => 'Spiacenti sembra ci sia stato un problema durante l\'eliminazione', + 'exception' => 'Eccezione', + 'featured' => 'In primo piano', + 'field_does_not_exist' => 'Campo non esiste', + 'how_to_use' => 'Come Usare', + 'index' => 'Indice', + 'internal_error' => 'Errore interno', + 'items' => 'item(s)', + 'keep_sidebar_open' => 'Yarr! Calate le ancore! (e lascia la barra laterale aperta)', + 'key' => 'Chiave', + 'last_modified' => 'Ultima modifica', + 'length' => 'Lunghezza', + 'login' => 'Login', + 'media' => 'Media', + 'menu_builder' => 'Costruttore del menù', + 'move' => 'Sposta', + 'name' => 'Nome', + 'new' => 'Nuovo', + 'no' => 'No', + 'no_thanks' => 'No Grazie', + 'not_null' => 'Non Null', + 'options' => 'Opzioni', + 'password' => 'Password', + 'permissions' => 'Permessi', + 'profile' => 'Profilo', + 'public_url' => 'URL Pubblico', + 'read' => 'Leggi', + 'rename' => 'Rinomina', + 'required' => 'Richiesto', + 'return_to_list' => 'Torna alla Lista', + 'route' => 'Percorso', + 'save' => 'Salva', + 'search' => 'Cerca', + 'select_all' => 'Seleziona Tutto', + 'select_group' => 'Seleziona un Gruppo Esistente o Aggiungi un Nuovo Gruppo', + 'settings' => 'Impostazioni', + 'showing_entries' => 'Visualizzazione dei risultati da :from a :to di :all|Visualizzazione dei risultati da :from a :to di :all', + 'submit' => 'Invia', 'successfully_added_new' => 'Aggiunto con successo', - 'successfully_deleted' => 'Eliminato con successo', - 'successfully_updated' => 'Aggiornato con successo', - 'timestamp' => 'Timestamp', - 'title' => 'Titolo', - 'type' => 'Tipo', - 'unsigned' => 'Valore Assoluto', - 'unstick_sidebar' => 'Sbloccare la barra laterale', - 'update' => 'Aggiorna', - 'update_failed' => 'Aggiornamento fallito', - 'upload' => 'Carica', - 'url' => 'URL', - 'view' => 'Visualizza', - 'viewing' => 'Visualizzando', - 'yes' => 'Sì', - 'yes_please' => 'Sì, Per favore', + 'successfully_deleted' => 'Eliminato con successo', + 'successfully_updated' => 'Aggiornato con successo', + 'timestamp' => 'Timestamp', + 'title' => 'Titolo', + 'type' => 'Tipo', + 'unsigned' => 'Valore Assoluto', + 'unstick_sidebar' => 'Sbloccare la barra laterale', + 'update' => 'Aggiorna', + 'update_failed' => 'Aggiornamento fallito', + 'upload' => 'Carica', + 'url' => 'URL', + 'view' => 'Visualizza', + 'viewing' => 'Visualizzando', + 'yes' => 'Sì', + 'yes_please' => 'Sì, Per favore', ], 'login' => [ - 'loggingin' => 'Collegati', + 'loggingin' => 'Collegati', 'signin_below' => 'Accedi Qui Sotto:', - 'welcome' => 'Benvenuti in Voyager. L\'Admin panel che mancava per Laravel', + 'welcome' => 'Benvenuti in Voyager. L\'Admin panel che mancava per Laravel', ], 'profile' => [ - 'avatar' => 'Avatar', - 'edit' => 'Modifica il mio profilo', - 'edit_user' => 'Modifica Utente', - 'password' => 'Password', + 'avatar' => 'Avatar', + 'edit' => 'Modifica il mio profilo', + 'edit_user' => 'Modifica Utente', + 'password' => 'Password', 'password_hint' => 'Lasciare vuoto per mantenere lo stesso', - 'role' => 'Ruolo', - 'user_role' => 'Ruolo Utente', + 'role' => 'Ruolo', + 'user_role' => 'Ruolo Utente', ], 'settings' => [ - 'usage_help' => 'Puoi ottenere il valore di ogni impostazione in qualsiasi punto del tuo sito chiamando', - 'save' => 'Salva Impostazioni', - 'new' => 'Nuova Impostazione', - 'help_name' => 'Es Nome Setting: Titolo Admin', - 'help_key' => 'Es Chiave Setting: titolo_admin', - 'help_option' => '(facoltativo, si applica solo a determinati tipi come il riquadro a discesa o il pulsante di scelta rapida)', - 'add_new' => 'Aggiungi Nuova Impostazione', - 'delete_question' => 'Sei sicuro di voler eliminare l\'impostazione :setting ?', - 'delete_confirm' => 'Sì, Elimina questa Impostazione', + 'usage_help' => 'Puoi ottenere il valore di ogni impostazione in qualsiasi punto del tuo sito chiamando', + 'save' => 'Salva Impostazioni', + 'new' => 'Nuova Impostazione', + 'help_name' => 'Es Nome Setting: Titolo Admin', + 'help_key' => 'Es Chiave Setting: titolo_admin', + 'help_option' => '(facoltativo, si applica solo a determinati tipi come il riquadro a discesa o il pulsante di scelta rapida)', + 'add_new' => 'Aggiungi Nuova Impostazione', + 'delete_question' => 'Sei sicuro di voler eliminare l\'impostazione :setting ?', + 'delete_confirm' => 'Sì, Elimina questa Impostazione', 'successfully_created' => 'Impostazione Creata con Successo', - 'successfully_saved' => 'Impostazione Salvata con Successo', + 'successfully_saved' => 'Impostazione Salvata con Successo', 'successfully_deleted' => 'Impostazione Eliminata con Successo', - 'already_at_top' => 'Questo è già in cima all\'elenco', - 'already_at_bottom' => 'Questo è già in fondo all\'elenco', - 'key_already_exists' => 'La Chiave :key è già esistente', - 'moved_order_up' => 'Impostazione :name spostato in sù', - 'moved_order_down' => 'Impostazione :name spostato in giù', + 'already_at_top' => 'Questo è già in cima all\'elenco', + 'already_at_bottom' => 'Questo è già in fondo all\'elenco', + 'key_already_exists' => 'La Chiave :key è già esistente', + 'moved_order_up' => 'Impostazione :name spostato in sù', + 'moved_order_down' => 'Impostazione :name spostato in giù', 'successfully_removed' => 'Il valore dell\'Impostazione :name è stato eliminato', - 'group_general' => 'Generale', - 'group_admin' => 'Amministratore', - 'group_site' => 'Sito', - 'group' => 'Gruppo', - 'help_group' => 'Questa impostazione è assegnata a', + 'group_general' => 'Generale', + 'group_admin' => 'Amministratore', + 'group_site' => 'Sito', + 'group' => 'Gruppo', + 'help_group' => 'Questa impostazione è assegnata a', ], 'media' => [ - 'add_new_folder' => 'Aggiungi Nuova Cartella', - 'audio_support' => 'Il tuo browser non supporta l\'elemento audio.', - 'create_new_folder' => 'Crea Nuova Cartella', + 'add_new_folder' => 'Aggiungi Nuova Cartella', + 'audio_support' => 'Il tuo browser non supporta l\'elemento audio.', + 'create_new_folder' => 'Crea Nuova Cartella', 'delete_folder_question' => 'Eliminando una cartella verranno eliminati anche i file e le cartelle al suo interno', - 'destination_folder' => 'Cartella di Destinazione', - 'drag_drop_info' => 'Trascina e rilascia i file o premi sotto per caricare', - 'error_already_exists' => 'Spiacenti esiste già un file o una cartella con questo nome in questa cartella.', - 'error_creating_dir' => 'Spiacenti qualcosa è andato storto nella creazione della cartella, '. + 'destination_folder' => 'Cartella di Destinazione', + 'drag_drop_info' => 'Trascina e rilascia i file o premi sotto per caricare', + 'error_already_exists' => 'Spiacenti esiste già un file o una cartella con questo nome in questa cartella.', + 'error_creating_dir' => 'Spiacenti qualcosa è andato storto nella creazione della cartella, '. 'per favore controllate i vostri permessi', 'error_deleting_file' => 'Spiacenti qualcosa è andato storto nell\'eliminazione di questo file, per favore controllate i vostri '. 'permessi', @@ -157,245 +157,245 @@ 'elimina l\'altro file.', 'error_moving' => 'Spiacenti, sembra che ci sia un problema nello spostare quel file / cartella, per favore '. 'controllate di avere i permessi corretti.', - 'error_uploading' => 'Caricamento Fallito: Errore sconosciuto!', + 'error_uploading' => 'Caricamento Fallito: Errore sconosciuto!', 'folder_exists_already' => 'Spiacenti questa cartella è già esistente, si prega di eliminarla se si desira '. 'ricrearla', - 'image_does_not_exist' => 'L\'immagine non esiste', - 'image_removed' => 'Immagine rimossa', - 'library' => 'Libreria Media', - 'loading' => 'CARICAMENTO DEI VOSTRI MEDIA FILES', - 'move_file_folder' => 'Sposta File/Cartella', - 'new_file_folder' => 'Nuovo nome di File/Cartella', - 'new_folder_name' => 'Nuovo Nome di Cartella', - 'no_files_here' => 'Nessun file presente.', - 'no_files_in_folder' => 'Nessun file in questa cartella.', - 'nothing_selected' => 'Nessun file o cartella selezionata', - 'rename_file_folder' => 'Rinomina File/Cartella', + 'image_does_not_exist' => 'L\'immagine non esiste', + 'image_removed' => 'Immagine rimossa', + 'library' => 'Libreria Media', + 'loading' => 'CARICAMENTO DEI VOSTRI MEDIA FILES', + 'move_file_folder' => 'Sposta File/Cartella', + 'new_file_folder' => 'Nuovo nome di File/Cartella', + 'new_folder_name' => 'Nuovo Nome di Cartella', + 'no_files_here' => 'Nessun file presente.', + 'no_files_in_folder' => 'Nessun file in questa cartella.', + 'nothing_selected' => 'Nessun file o cartella selezionata', + 'rename_file_folder' => 'Rinomina File/Cartella', 'success_uploaded_file' => 'Il nuovo file è stato caricato con successo!', - 'success_uploading' => 'Immagine caricata con successo!', - 'uploading_wrong_type' => 'Caricamento Fallito: File non supportato o troppo grande per essere caricato!', - 'video_support' => 'Il tuo browser non supporta il tag video.', + 'success_uploading' => 'Immagine caricata con successo!', + 'uploading_wrong_type' => 'Caricamento Fallito: File non supportato o troppo grande per essere caricato!', + 'video_support' => 'Il tuo browser non supporta il tag video.', ], 'menu_builder' => [ - 'color' => 'Colore in RGB o hex (opzionale)', - 'color_ph' => 'Colore (es. #ffffff o rgb(255, 255, 255)', - 'create_new_item' => 'Crea un nuovo elemento del Menù', - 'delete_item_confirm' => 'Sì, Elimina questo elemento del Menù', + 'color' => 'Colore in RGB o hex (opzionale)', + 'color_ph' => 'Colore (es. #ffffff o rgb(255, 255, 255)', + 'create_new_item' => 'Crea un nuovo elemento del Menù', + 'delete_item_confirm' => 'Sì, Elimina questo elemento del Menù', 'delete_item_question' => 'Sei sicuro di voler eliminare questo elemento del menù?', - 'drag_drop_info' => 'Trascina gli elementi del menù qui sotto per riordinarli.', - 'dynamic_route' => 'Percorso Dinamico', - 'edit_item' => 'Modifica Elemento di Menù', - 'icon_class' => 'Classe Font Icon per l\'elemento del menù (usare una', - 'icon_class2' => 'Voyager Font Class)', - 'icon_class_ph' => 'Icon Class (opzionale)', - 'item_route' => 'Percorso per l\'elemento del menù', - 'item_title' => 'Titolo dell\'elemento del menù', - 'link_type' => 'Tipo Link', - 'new_menu_item' => 'Nuovo Elemento di Menù', - 'open_in' => 'Apri in', - 'open_new' => 'Nuova Tab/Finestra', - 'open_same' => 'Stessa Tab/Finestra', - 'route_parameter' => 'Parametri percorso (se necessari)', - 'static_url' => 'URL Statico', + 'drag_drop_info' => 'Trascina gli elementi del menù qui sotto per riordinarli.', + 'dynamic_route' => 'Percorso Dinamico', + 'edit_item' => 'Modifica Elemento di Menù', + 'icon_class' => 'Classe Font Icon per l\'elemento del menù (usare una', + 'icon_class2' => 'Voyager Font Class)', + 'icon_class_ph' => 'Icon Class (opzionale)', + 'item_route' => 'Percorso per l\'elemento del menù', + 'item_title' => 'Titolo dell\'elemento del menù', + 'link_type' => 'Tipo Link', + 'new_menu_item' => 'Nuovo Elemento di Menù', + 'open_in' => 'Apri in', + 'open_new' => 'Nuova Tab/Finestra', + 'open_same' => 'Stessa Tab/Finestra', + 'route_parameter' => 'Parametri percorso (se necessari)', + 'static_url' => 'URL Statico', 'successfully_created' => 'Elemento del Menù Creato con Successo.', 'successfully_deleted' => 'Elemento del Menù Eliminato con Successo.', 'successfully_updated' => 'Elemento del Menù Aggiornato con Successo.', - 'updated_order' => 'Ordine menù aggiornato con successo.', - 'url' => 'URL per l\'Elemento del Menù', - 'usage_hint' => 'È possibile stampare un menu ovunque nel tuo sito chiamando|Puoi stampare '. + 'updated_order' => 'Ordine menù aggiornato con successo.', + 'url' => 'URL per l\'Elemento del Menù', + 'usage_hint' => 'È possibile stampare un menu ovunque nel tuo sito chiamando|Puoi stampare '. 'questo menu ovunque nel tuo sito chiamando', ], 'post' => [ - 'category' => 'Categoria Articolo', - 'content' => 'Contenuto Articolo', - 'details' => 'Dettagli Articolo', - 'excerpt' => 'Estratto Piccola descrizione di questo articolo', - 'image' => 'Immagine Articolo', + 'category' => 'Categoria Articolo', + 'content' => 'Contenuto Articolo', + 'details' => 'Dettagli Articolo', + 'excerpt' => 'Estratto Piccola descrizione di questo articolo', + 'image' => 'Immagine Articolo', 'meta_description' => 'Meta Description', - 'meta_keywords' => 'Meta Keywords', - 'new' => 'Crea Nuovo Articolo', - 'seo_content' => 'Contenuto SEO', - 'seo_title' => 'Titolo SEO', - 'slug' => 'URL slug', - 'status' => 'Stato Articolo', - 'status_draft' => 'bozza', - 'status_pending' => 'in attesa', + 'meta_keywords' => 'Meta Keywords', + 'new' => 'Crea Nuovo Articolo', + 'seo_content' => 'Contenuto SEO', + 'seo_title' => 'Titolo SEO', + 'slug' => 'URL slug', + 'status' => 'Stato Articolo', + 'status_draft' => 'bozza', + 'status_pending' => 'in attesa', 'status_published' => 'pubblicato', - 'title' => 'Titolo Articolo', - 'title_sub' => 'Il titolo per il tuo articolo', - 'update' => 'Aggiorna Articolo', + 'title' => 'Titolo Articolo', + 'title_sub' => 'Il titolo per il tuo articolo', + 'update' => 'Aggiorna Articolo', ], 'database' => [ - 'add_bread' => 'Aggiungi BREAD a questa tabella', - 'add_new_column' => 'Aggiungi Nuova Colonna', - 'add_softdeletes' => 'Aggiungi Eliminazioni soft', - 'add_timestamps' => 'Aggiungi Timestamps', - 'already_exists' => 'già esistente', - 'already_exists_table' => 'La tabella :table esiste già', - 'bread_crud_actions' => 'Azioni BREAD/CRUD', - 'bread_info' => 'Informazioni BREAD', - 'column' => 'Colonna', - 'composite_warning' => 'Avviso: questa colonna fa parte di un indice composito', - 'controller_name' => 'Nome Controller', - 'controller_name_hint' => 'es. PageController, se lasciato vuoto verrà usato il BREAD Controller', - 'create_bread_for_table' => 'Crea BREAD per la tabella :table', - 'create_migration' => 'Creare una migrazione per questa tabella?', - 'create_model_table' => 'Creare un model per questa tabella?', - 'create_new_table' => 'Crea Nuova Tabella', - 'create_your_new_table' => 'Crea la tua Nuova Tabella', - 'default' => 'Default', - 'delete_bread' => 'Elimina BREAD', + 'add_bread' => 'Aggiungi BREAD a questa tabella', + 'add_new_column' => 'Aggiungi Nuova Colonna', + 'add_softdeletes' => 'Aggiungi Eliminazioni soft', + 'add_timestamps' => 'Aggiungi Timestamps', + 'already_exists' => 'già esistente', + 'already_exists_table' => 'La tabella :table esiste già', + 'bread_crud_actions' => 'Azioni BREAD/CRUD', + 'bread_info' => 'Informazioni BREAD', + 'column' => 'Colonna', + 'composite_warning' => 'Avviso: questa colonna fa parte di un indice composito', + 'controller_name' => 'Nome Controller', + 'controller_name_hint' => 'es. PageController, se lasciato vuoto verrà usato il BREAD Controller', + 'create_bread_for_table' => 'Crea BREAD per la tabella :table', + 'create_migration' => 'Creare una migrazione per questa tabella?', + 'create_model_table' => 'Creare un model per questa tabella?', + 'create_new_table' => 'Crea Nuova Tabella', + 'create_your_new_table' => 'Crea la tua Nuova Tabella', + 'default' => 'Default', + 'delete_bread' => 'Elimina BREAD', 'delete_bread_before_table' => 'Assicurati di eliminare il BREAD in questa tabella prima di eliminare la tabella.', - 'delete_table_bread_conf' => 'Sì, elimina il BREAD', - 'delete_table_bread_quest' => 'Sei sicuro di voler eliminare il BREAD per la tabella :table?', - 'delete_table_confirm' => 'Sì, elimina questa tabella', - 'delete_table_question' => 'Sei sicuro di voler eliminare la tabella :table?', - 'description' => 'Descrizione', - 'display_name' => 'Nome Visualizzato', - 'display_name_plural' => 'Nome Visualizzato (Plurale)', - 'display_name_singular' => 'Nome Visualizzato (Singolare)', - 'edit_bread' => 'Modifica BREAD', - 'edit_bread_for_table' => 'Modifica BREAD per la tabella :table', - 'edit_rows' => 'Modifica le righe per la tabella :table qui sotto', - 'edit_table' => 'Modifica la tabella :table qui sotto', - 'edit_table_not_exist' => 'La tabella che vuoi modificare non esiste', - 'error_creating_bread' => 'Spiacenti sembra ci sia stato un problema nel creare questo BREAD', - 'error_removing_bread' => 'Spiacenti sembra ci sia stato un problema nell\'eliminare questo BREAD', - 'error_updating_bread' => 'Spiacenti sembra ci sia stato un problema nell\'aggiornare questo BREAD', - 'extra' => 'Aggiuntivo', - 'field' => 'Campo', - 'field_safe_failed' => 'Salvataggio fallito per il campo :field, stiamo tornando indietro!', - 'generate_permissions' => 'Genera Permessi', - 'icon_class' => 'Icona da utilizzare per questa Tabella', - 'icon_hint' => 'Icona (opzionale) Usare una', - 'icon_hint2' => 'Voyager Font Class', - 'index' => 'INDICE', - 'input_type' => 'Tipo input', - 'key' => 'Chiave', - 'model_class' => 'Nome della Classe del Model', - 'model_name' => 'Nome Model', - 'model_name_ph' => 'es. \App\Models\User, se lasciato vuoto proverà ad utilizzare il nome della tabella', - 'name_warning' => 'Per favore dare un nome alla colonna prima di inserire un indice', - 'no_composites_warning' => 'Questa tabella ha indici compositi. Si prega di notare che non sono supportati '. + 'delete_table_bread_conf' => 'Sì, elimina il BREAD', + 'delete_table_bread_quest' => 'Sei sicuro di voler eliminare il BREAD per la tabella :table?', + 'delete_table_confirm' => 'Sì, elimina questa tabella', + 'delete_table_question' => 'Sei sicuro di voler eliminare la tabella :table?', + 'description' => 'Descrizione', + 'display_name' => 'Nome Visualizzato', + 'display_name_plural' => 'Nome Visualizzato (Plurale)', + 'display_name_singular' => 'Nome Visualizzato (Singolare)', + 'edit_bread' => 'Modifica BREAD', + 'edit_bread_for_table' => 'Modifica BREAD per la tabella :table', + 'edit_rows' => 'Modifica le righe per la tabella :table qui sotto', + 'edit_table' => 'Modifica la tabella :table qui sotto', + 'edit_table_not_exist' => 'La tabella che vuoi modificare non esiste', + 'error_creating_bread' => 'Spiacenti sembra ci sia stato un problema nel creare questo BREAD', + 'error_removing_bread' => 'Spiacenti sembra ci sia stato un problema nell\'eliminare questo BREAD', + 'error_updating_bread' => 'Spiacenti sembra ci sia stato un problema nell\'aggiornare questo BREAD', + 'extra' => 'Aggiuntivo', + 'field' => 'Campo', + 'field_safe_failed' => 'Salvataggio fallito per il campo :field, stiamo tornando indietro!', + 'generate_permissions' => 'Genera Permessi', + 'icon_class' => 'Icona da utilizzare per questa Tabella', + 'icon_hint' => 'Icona (opzionale) Usare una', + 'icon_hint2' => 'Voyager Font Class', + 'index' => 'INDICE', + 'input_type' => 'Tipo input', + 'key' => 'Chiave', + 'model_class' => 'Nome della Classe del Model', + 'model_name' => 'Nome Model', + 'model_name_ph' => 'es. \App\Models\User, se lasciato vuoto proverà ad utilizzare il nome della tabella', + 'name_warning' => 'Per favore dare un nome alla colonna prima di inserire un indice', + 'no_composites_warning' => 'Questa tabella ha indici compositi. Si prega di notare che non sono supportati '. 'al momento. Fare attenzione quando si tenta di aggiungere/eliminare gli indici.', - 'null' => 'Null', - 'optional_details' => 'Dettagli Opzionali', - 'policy_class' => 'Nome della Classe Policy', - 'policy_name' => 'Nome Policy', - 'policy_name_ph' => 'es. \App\Policies\UserPolicy, se lasciato vuoto proverà ad usare quella di default', - 'primary' => 'PRIMARIA', - 'server_pagination' => 'Paginazione lato Server', - 'success_create_table' => 'Tabella :table creata con successo', + 'null' => 'Null', + 'optional_details' => 'Dettagli Opzionali', + 'policy_class' => 'Nome della Classe Policy', + 'policy_name' => 'Nome Policy', + 'policy_name_ph' => 'es. \App\Policies\UserPolicy, se lasciato vuoto proverà ad usare quella di default', + 'primary' => 'PRIMARIA', + 'server_pagination' => 'Paginazione lato Server', + 'success_create_table' => 'Tabella :table creata con successo', 'success_created_bread' => 'Nuovo BREAD creato con successo', - 'success_delete_table' => 'Tabella :table eliminata con successo', - 'success_remove_bread' => 'BREAD rimosso con successo da :datatype', - 'success_update_bread' => 'Aggiornato con successo :datatype BREAD', - 'success_update_table' => 'Tabella :table aggiornata con successo', - 'table_actions' => 'Azioni Tabella', - 'table_columns' => 'Colonne Tabella', - 'table_has_index' => 'La tabella ha già un indice primario.', - 'table_name' => 'Nome Tabella', - 'table_no_columns' => 'La tabella non ha colonne...', - 'type' => 'Tipo', - 'type_not_supported' => 'Questo tipo non è supportato', - 'unique' => 'UNICA', - 'unknown_type' => 'Tipo sconosciuto', - 'update_table' => 'Aggiorna Tabella', - 'url_slug' => 'URL Slug (deve essere unico)', - 'url_slug_ph' => 'URL slug (ex. articoli)', - 'visibility' => 'Visibilità', + 'success_delete_table' => 'Tabella :table eliminata con successo', + 'success_remove_bread' => 'BREAD rimosso con successo da :datatype', + 'success_update_bread' => 'Aggiornato con successo :datatype BREAD', + 'success_update_table' => 'Tabella :table aggiornata con successo', + 'table_actions' => 'Azioni Tabella', + 'table_columns' => 'Colonne Tabella', + 'table_has_index' => 'La tabella ha già un indice primario.', + 'table_name' => 'Nome Tabella', + 'table_no_columns' => 'La tabella non ha colonne...', + 'type' => 'Tipo', + 'type_not_supported' => 'Questo tipo non è supportato', + 'unique' => 'UNICA', + 'unknown_type' => 'Tipo sconosciuto', + 'update_table' => 'Aggiorna Tabella', + 'url_slug' => 'URL Slug (deve essere unico)', + 'url_slug_ph' => 'URL slug (ex. articoli)', + 'visibility' => 'Visibilità', ], 'dimmer' => [ - 'page' => 'Pagina|Pagine', + 'page' => 'Pagina|Pagine', 'page_link_text' => 'Visualizza tutte le pagine', - 'page_text' => 'Ci sono :count :string nel tuo database. Premi il bottone qui sotto per vedere tutte le pagine.', - 'post' => 'Articolo|Articoli', + 'page_text' => 'Ci sono :count :string nel tuo database. Premi il bottone qui sotto per vedere tutte le pagine.', + 'post' => 'Articolo|Articoli', 'post_link_text' => 'Visualizza tutti gli articoli', - 'post_text' => 'Ci sono :count :string nel tuo database. Premi il bottone qui sotto per vedere tutti gli articoli.', - 'user' => 'Utente|Utenti', + 'post_text' => 'Ci sono :count :string nel tuo database. Premi il bottone qui sotto per vedere tutti gli articoli.', + 'user' => 'Utente|Utenti', 'user_link_text' => 'Visualizza tutti gli utenti', - 'user_text' => 'Ci sono :count :string nel tuo database. Premi il bottone qui sotto per vedere tutti gli utenti.', + 'user_text' => 'Ci sono :count :string nel tuo database. Premi il bottone qui sotto per vedere tutti gli utenti.', ], 'form' => [ - 'field_password_keep' => 'Lasciare vuoto per mantenere lo stesso', + 'field_password_keep' => 'Lasciare vuoto per mantenere lo stesso', 'field_select_dd_relationship' => 'Assicurarsi di impostare la relazione appropriata nel metodo :method della'. 'classe :class .', - 'type_checkbox' => 'Check Box', - 'type_codeeditor' => 'Editore del Codice', - 'type_file' => 'File', - 'type_image' => 'Immagine', - 'type_radiobutton' => 'Radio Button', - 'type_richtextbox' => 'Rich Textbox', + 'type_checkbox' => 'Check Box', + 'type_codeeditor' => 'Editore del Codice', + 'type_file' => 'File', + 'type_image' => 'Immagine', + 'type_radiobutton' => 'Radio Button', + 'type_richtextbox' => 'Rich Textbox', 'type_selectdropdown' => 'Select Dropdown', - 'type_textarea' => 'Text Area', - 'type_textbox' => 'Text Box', + 'type_textarea' => 'Text Area', + 'type_textbox' => 'Text Box', ], // DataTable translations from: https://github.com/DataTables/Plugins/tree/master/i18n 'datatable' => [ - 'sEmptyTable' => 'Nessun dato disponibile nella tabella', - 'sInfo' => 'Visualizzazione _START_ a _END_ di _TOTAL_ elementi', - 'sInfoEmpty' => 'Visualizzazione 0 a 0 di 0 elementi', - 'sInfoFiltered' => '(filtrati da _MAX_ elementi totali)', - 'sInfoPostFix' => '', - 'sInfoThousands' => ',', - 'sLengthMenu' => 'Mostra _MENU_ elementi', + 'sEmptyTable' => 'Nessun dato disponibile nella tabella', + 'sInfo' => 'Visualizzazione _START_ a _END_ di _TOTAL_ elementi', + 'sInfoEmpty' => 'Visualizzazione 0 a 0 di 0 elementi', + 'sInfoFiltered' => '(filtrati da _MAX_ elementi totali)', + 'sInfoPostFix' => '', + 'sInfoThousands' => ',', + 'sLengthMenu' => 'Mostra _MENU_ elementi', 'sLoadingRecords' => 'Caricando...', - 'sProcessing' => 'Processando...', - 'sSearch' => 'Cerca:', - 'sZeroRecords' => 'Nessun risultato trovato', - 'oPaginate' => [ - 'sFirst' => 'Primo', - 'sLast' => 'Ultimo', - 'sNext' => 'Successivo', + 'sProcessing' => 'Processando...', + 'sSearch' => 'Cerca:', + 'sZeroRecords' => 'Nessun risultato trovato', + 'oPaginate' => [ + 'sFirst' => 'Primo', + 'sLast' => 'Ultimo', + 'sNext' => 'Successivo', 'sPrevious' => 'Precedente', ], 'oAria' => [ - 'sSortAscending' => ': attivare per ordinare la colonna in ordine crescente', + 'sSortAscending' => ': attivare per ordinare la colonna in ordine crescente', 'sSortDescending' => ': attivare per ordinare la colonna in ordine decrescente', ], ], 'theme' => [ - 'footer_copyright' => 'Realizzato con da', + 'footer_copyright' => 'Realizzato con da', 'footer_copyright2' => 'Realizzato con rum, e poi ancora rum', ], 'json' => [ - 'invalid' => 'Json non valido', - 'invalid_message' => 'Sembra che tu abbia introdotto qualche JSON non valido.', - 'valid' => 'Json valido', + 'invalid' => 'Json non valido', + 'invalid_message' => 'Sembra che tu abbia introdotto qualche JSON non valido.', + 'valid' => 'Json valido', 'validation_errors' => 'Errori di validazione', ], 'analytics' => [ - 'by_pageview' => 'Per pageview', - 'by_sessions' => 'Per sessioni', - 'by_users' => 'Per utenti', + 'by_pageview' => 'Per pageview', + 'by_sessions' => 'Per sessioni', + 'by_users' => 'Per utenti', 'no_client_id' => 'Per visualizzare le analisi, dovrai ottenere un client ID per Google Analytics e'. 'aggiungerlo alle tue impostazioni per la chiave google_analytics_client_id'. '. ottieni una chiave su Google developer console:', - 'set_view' => 'Seleziona una Vista', - 'this_vs_last_week' => 'Questa settimana vs la scorsa settimana', - 'this_vs_last_year' => 'Quest\'anno vs lo scorso anno', - 'top_browsers' => 'Browser Top', - 'top_countries' => 'Paesi Top', + 'set_view' => 'Seleziona una Vista', + 'this_vs_last_week' => 'Questa settimana vs la scorsa settimana', + 'this_vs_last_year' => 'Quest\'anno vs lo scorso anno', + 'top_browsers' => 'Browser Top', + 'top_countries' => 'Paesi Top', 'various_visualizations' => 'Varie visualizzazioni', ], 'error' => [ - 'symlink_created_text' => 'Abbiamo appena creato il symlink mancante per te.', + 'symlink_created_text' => 'Abbiamo appena creato il symlink mancante per te.', 'symlink_created_title' => 'Il symlink per lo storage mancante è stato creato', - 'symlink_failed_text' => 'Non siamo riusciti a generare il symlink mancante per l\'applicazione. '. + 'symlink_failed_text' => 'Non siamo riusciti a generare il symlink mancante per l\'applicazione. '. 'Sembra che il tuo provider di hosting non lo supporti.', - 'symlink_failed_title' => 'Non è possibile creare il symlink mancante per lo storage', + 'symlink_failed_title' => 'Non è possibile creare il symlink mancante per lo storage', 'symlink_missing_button' => 'Riparalo', - 'symlink_missing_text' => 'Non abbiamo trovato un symlink per lo storage. Questo potrebbe causare problemi '. + 'symlink_missing_text' => 'Non abbiamo trovato un symlink per lo storage. Questo potrebbe causare problemi '. 'nel caricare file multimediali dal browser.', 'symlink_missing_title' => 'Symlink per lo storage mancante', ], diff --git a/lang/pl/passwords.php b/lang/pl/passwords.php index c74a64baf..c89f76d17 100644 --- a/lang/pl/passwords.php +++ b/lang/pl/passwords.php @@ -17,6 +17,6 @@ 'sent' => 'Na Twój adres mailowy został wysłany link do zresetowania hasła!', 'throttled' => 'Poczekaj przed następną próbą.', 'token' => 'Token resetowania hasła jest niepoprawny.', - 'user' => "W naszej bazie nie ma użytkownika z podanym adresem mailowym.", + 'user' => 'W naszej bazie nie ma użytkownika z podanym adresem mailowym.', ]; diff --git a/lang/pl/validation.php b/lang/pl/validation.php index ce38555c2..19e5ee8b5 100644 --- a/lang/pl/validation.php +++ b/lang/pl/validation.php @@ -13,92 +13,92 @@ | */ - 'accepted' => 'Pole :attribute musi być zaakceptowane.', - 'active_url' => 'Pole :attribute nie jest prawidłowym adresem URL.', - 'after' => 'Pole :attribute musi być datą po :date.', - 'after_or_equal' => 'Pole :attribute musi być datą równą lub po :date.', - 'alpha' => 'Pole :attribute może zawierać tylko litery.', - 'alpha_dash' => 'Pole :attribute może zawierać tylko litery, cyfry, myślniki i podkreślenia.', - 'alpha_num' => 'Pole :attribute może zawierać tylko litery i cyfry.', - 'array' => 'Pole :attribute musi być tablicą.', - 'before' => 'Pole :attribute musi być datą przed :date.', - 'before_or_equal' => 'Pole :attribute musi być datą przed lub równą :date.', - 'between' => [ + 'accepted' => 'Pole :attribute musi być zaakceptowane.', + 'active_url' => 'Pole :attribute nie jest prawidłowym adresem URL.', + 'after' => 'Pole :attribute musi być datą po :date.', + 'after_or_equal' => 'Pole :attribute musi być datą równą lub po :date.', + 'alpha' => 'Pole :attribute może zawierać tylko litery.', + 'alpha_dash' => 'Pole :attribute może zawierać tylko litery, cyfry, myślniki i podkreślenia.', + 'alpha_num' => 'Pole :attribute może zawierać tylko litery i cyfry.', + 'array' => 'Pole :attribute musi być tablicą.', + 'before' => 'Pole :attribute musi być datą przed :date.', + 'before_or_equal' => 'Pole :attribute musi być datą przed lub równą :date.', + 'between' => [ 'numeric' => 'Pole :attribute musi mieścić się między :min a :max.', - 'file' => 'Pole :attribute musi mieścić się między :min a :max kilobajtów.', - 'string' => 'Pole :attribute musi mieścić się między :min a :max znaków.', - 'array' => 'Pole :attribute musi mieć od :min do :max elementów.', + 'file' => 'Pole :attribute musi mieścić się między :min a :max kilobajtów.', + 'string' => 'Pole :attribute musi mieścić się między :min a :max znaków.', + 'array' => 'Pole :attribute musi mieć od :min do :max elementów.', ], - 'boolean' => 'Pole :attribute musi być prawda lub fałsz.', - 'confirmed' => 'Potwierdzenie :attribute nie pasuje.', - 'current_password' => 'Hasło jest niepoprawne.', - 'date' => 'Pole :attribute nie jest prawidłową datą.', - 'date_equals' => 'Pole :attribute musi być datą równą :date.', - 'date_format' => 'Pole :attribute nie pasuje do formatu :format.', - 'declined' => 'Pole :attribute musi być odrzucone.', - 'declined_if' => 'Pole :attribute musi być odrzucone jeśli :other jest :value.', - 'different' => 'Pole :attribute i :other muszą być różne.', - 'digits' => 'Pole :attribute musi mieć :digits cyfr.', - 'digits_between' => 'Pole :attribute musi mieścić się między :min a :max cyframi.', - 'dimensions' => 'Pole :attribute ma nieprawidłowe wymiary obrazu.', - 'distinct' => 'Pole :attribute ma zduplikowaną wartość.', - 'email' => 'Pole :attribute musi być prawidłowym adresem e-mail.', - 'ends_with' => 'Pole :attribute musi się kończyć jednym z podanych: :values.', - 'enum' => 'Atrybut :attribute jest niepoprawny.', - 'exists' => 'Wybrane pole :attribute jest nieprawidłowe.', - 'file' => 'Pole :attribute musi być plikiem.', - 'filled' => 'Pole :attribute jest wymagane.', - 'gt' => [ + 'boolean' => 'Pole :attribute musi być prawda lub fałsz.', + 'confirmed' => 'Potwierdzenie :attribute nie pasuje.', + 'current_password' => 'Hasło jest niepoprawne.', + 'date' => 'Pole :attribute nie jest prawidłową datą.', + 'date_equals' => 'Pole :attribute musi być datą równą :date.', + 'date_format' => 'Pole :attribute nie pasuje do formatu :format.', + 'declined' => 'Pole :attribute musi być odrzucone.', + 'declined_if' => 'Pole :attribute musi być odrzucone jeśli :other jest :value.', + 'different' => 'Pole :attribute i :other muszą być różne.', + 'digits' => 'Pole :attribute musi mieć :digits cyfr.', + 'digits_between' => 'Pole :attribute musi mieścić się między :min a :max cyframi.', + 'dimensions' => 'Pole :attribute ma nieprawidłowe wymiary obrazu.', + 'distinct' => 'Pole :attribute ma zduplikowaną wartość.', + 'email' => 'Pole :attribute musi być prawidłowym adresem e-mail.', + 'ends_with' => 'Pole :attribute musi się kończyć jednym z podanych: :values.', + 'enum' => 'Atrybut :attribute jest niepoprawny.', + 'exists' => 'Wybrane pole :attribute jest nieprawidłowe.', + 'file' => 'Pole :attribute musi być plikiem.', + 'filled' => 'Pole :attribute jest wymagane.', + 'gt' => [ 'numeric' => 'Pole :attribute musi być większe niż :value.', - 'file' => 'Pole :attribute musi być większe niż :value kilobajtów.', - 'string' => 'Pole :attribute musi być dłuższe niż :value znaków.', - 'array' => 'Pole :attribute musi mieć więcej niż :value elementów.', + 'file' => 'Pole :attribute musi być większe niż :value kilobajtów.', + 'string' => 'Pole :attribute musi być dłuższe niż :value znaków.', + 'array' => 'Pole :attribute musi mieć więcej niż :value elementów.', ], - 'gte' => [ + 'gte' => [ 'numeric' => 'Pole :attribute musi być większe lub równe :value.', - 'file' => 'Pole :attribute musi być większe lub równe :value kilobajtów.', - 'string' => 'Pole :attribute musi być dłuższe lub równe :value znaków.', - 'array' => 'Pole :attribute musi mieć :value lub więcej elementów.', + 'file' => 'Pole :attribute musi być większe lub równe :value kilobajtów.', + 'string' => 'Pole :attribute musi być dłuższe lub równe :value znaków.', + 'array' => 'Pole :attribute musi mieć :value lub więcej elementów.', ], - 'image' => 'Pole :attribute musi być obrazem.', - 'in' => 'Wybrane pole :attribute jest nieprawidłowe.', - 'in_array' => 'Pole :attribute nie istnieje w :other.', - 'integer' => 'Pole :attribute musi być liczbą całkowitą.', - 'ip' => 'Pole :attribute musi być prawidłowym adresem IP.', - 'ipv4' => 'Pole :attribute musi być prawidłowym adresem IPv4.', - 'ipv6' => 'Pole :attribute musi być prawidłowym adresem IPv6.', - 'json' => 'Pole :attribute musi być prawidłowym ciągiem JSON.', - 'lt' => [ + 'image' => 'Pole :attribute musi być obrazem.', + 'in' => 'Wybrane pole :attribute jest nieprawidłowe.', + 'in_array' => 'Pole :attribute nie istnieje w :other.', + 'integer' => 'Pole :attribute musi być liczbą całkowitą.', + 'ip' => 'Pole :attribute musi być prawidłowym adresem IP.', + 'ipv4' => 'Pole :attribute musi być prawidłowym adresem IPv4.', + 'ipv6' => 'Pole :attribute musi być prawidłowym adresem IPv6.', + 'json' => 'Pole :attribute musi być prawidłowym ciągiem JSON.', + 'lt' => [ 'numeric' => 'Pole :attribute musi być mniejsze niż :value.', - 'file' => 'Pole :attribute musi być mniejsze niż :value kilobajtów.', - 'string' => 'Pole :attribute musi być krótsze niż :value znaków.', - 'array' => 'Pole :attribute musi mieć mniej niż :value elementów.', + 'file' => 'Pole :attribute musi być mniejsze niż :value kilobajtów.', + 'string' => 'Pole :attribute musi być krótsze niż :value znaków.', + 'array' => 'Pole :attribute musi mieć mniej niż :value elementów.', ], - 'lte' => [ + 'lte' => [ 'numeric' => 'Pole :attribute musi być mniejsze lub równe :value.', - 'file' => 'Pole :attribute musi być mniejsze lub równe :value kilobajtów.', - 'string' => 'Pole :attribute musi być krótsze lub równe :value znaków.', - 'array' => 'Pole :attribute nie może mieć więcej niż :value elementów.', + 'file' => 'Pole :attribute musi być mniejsze lub równe :value kilobajtów.', + 'string' => 'Pole :attribute musi być krótsze lub równe :value znaków.', + 'array' => 'Pole :attribute nie może mieć więcej niż :value elementów.', ], - 'mac_address' => 'Pole :attribute musi być poprawnym adresem MAC.', - 'max' => [ + 'mac_address' => 'Pole :attribute musi być poprawnym adresem MAC.', + 'max' => [ 'numeric' => 'Pole :attribute nie może być większe niż :max.', - 'file' => 'Pole :attribute nie może być większe niż :max kilobajtów.', - 'string' => 'Pole :attribute nie może być dłuższe niż :max znaków.', - 'array' => 'Pole :attribute nie może mieć więcej niż :max elementów.', + 'file' => 'Pole :attribute nie może być większe niż :max kilobajtów.', + 'string' => 'Pole :attribute nie może być dłuższe niż :max znaków.', + 'array' => 'Pole :attribute nie może mieć więcej niż :max elementów.', ], - 'mimes' => 'Pole :attribute musi być plikiem typu: :values.', - 'mimetypes' => 'Pole :attribute musi być plikiem typu: :values.', - 'min' => [ + 'mimes' => 'Pole :attribute musi być plikiem typu: :values.', + 'mimetypes' => 'Pole :attribute musi być plikiem typu: :values.', + 'min' => [ 'numeric' => 'Pole :attribute musi mieć co najmniej :min.', - 'file' => 'Pole :attribute musi mieć co najmniej :min kilobajtów.', - 'string' => 'Pole :attribute musi mieć co najmniej :min znaków.', - 'array' => 'Pole :attribute musi mieć co najmniej :min elementów.', + 'file' => 'Pole :attribute musi mieć co najmniej :min kilobajtów.', + 'string' => 'Pole :attribute musi mieć co najmniej :min znaków.', + 'array' => 'Pole :attribute musi mieć co najmniej :min elementów.', ], - 'multiple_of' => 'Pole :attribute musi być wielokrotnością pola :value.', - 'not_in' => 'Wybrane pole :attribute jest nieprawidłowe.', - 'not_regex' => 'Format pola :attribute jest nieprawidłowy.', - 'numeric' => 'Pole :attribute musi być liczbą.', + 'multiple_of' => 'Pole :attribute musi być wielokrotnością pola :value.', + 'not_in' => 'Wybrane pole :attribute jest nieprawidłowe.', + 'not_regex' => 'Format pola :attribute jest nieprawidłowy.', + 'numeric' => 'Pole :attribute musi być liczbą.', 'password' => [ 'letters' => 'The :attribute must contain at least one letter.', 'mixed' => 'The :attribute must contain at least one uppercase and one lowercase letter.', @@ -106,34 +106,34 @@ 'symbols' => 'The :attribute must contain at least one symbol.', 'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.', ], - 'present' => 'Pole :attribute musi być obecne.', - 'prohibited' => 'Pole :attribute jest zabronione.', - 'prohibited_if' => 'Pole :attribute jest zabronione, gdy :other jest :value.', - 'prohibited_unless' => 'Pole :attribute jest zabronione, chyba że :other znajduje się w :values.', - 'prohibits' => 'Pole :attribute zabrania obecności pola :other.', - 'regex' => 'Format pola :attribute jest nieprawidłowy.', - 'required' => 'Pole :attribute jest wymagane.', - 'required_array_keys' => 'Pole :attribute musi zawierać wpisy dla: :values.', - 'required_if' => 'Pole :attribute jest wymagane, gdy :other jest :value.', - 'required_unless' => 'Pole :attribute jest wymagane, chyba że :other jest w :values.', - 'required_with' => 'Pole :attribute jest wymagane, gdy :values jest obecne.', - 'required_with_all' => 'Pole :attribute jest wymagane, gdy :values jest obecne.', - 'required_without' => 'Pole :attribute jest wymagane, gdy :values nie jest obecne.', + 'present' => 'Pole :attribute musi być obecne.', + 'prohibited' => 'Pole :attribute jest zabronione.', + 'prohibited_if' => 'Pole :attribute jest zabronione, gdy :other jest :value.', + 'prohibited_unless' => 'Pole :attribute jest zabronione, chyba że :other znajduje się w :values.', + 'prohibits' => 'Pole :attribute zabrania obecności pola :other.', + 'regex' => 'Format pola :attribute jest nieprawidłowy.', + 'required' => 'Pole :attribute jest wymagane.', + 'required_array_keys' => 'Pole :attribute musi zawierać wpisy dla: :values.', + 'required_if' => 'Pole :attribute jest wymagane, gdy :other jest :value.', + 'required_unless' => 'Pole :attribute jest wymagane, chyba że :other jest w :values.', + 'required_with' => 'Pole :attribute jest wymagane, gdy :values jest obecne.', + 'required_with_all' => 'Pole :attribute jest wymagane, gdy :values jest obecne.', + 'required_without' => 'Pole :attribute jest wymagane, gdy :values nie jest obecne.', 'required_without_all' => 'Pole :attribute jest wymagane, gdy żadne z :values nie jest obecne.', - 'same' => 'Pole :attribute i :other muszą być takie same.', - 'size' => [ + 'same' => 'Pole :attribute i :other muszą być takie same.', + 'size' => [ 'numeric' => 'Pole :attribute musi mieć rozmiar :size.', - 'file' => 'Pole :attribute musi mieć rozmiar :size kilobajtów.', - 'string' => 'Pole :attribute musi mieć rozmiar :size znaków.', - 'array' => 'Pole :attribute musi zawierać :size elementów.', + 'file' => 'Pole :attribute musi mieć rozmiar :size kilobajtów.', + 'string' => 'Pole :attribute musi mieć rozmiar :size znaków.', + 'array' => 'Pole :attribute musi zawierać :size elementów.', ], - 'starts_with' => 'Pole :attribute musi zaczynać się od jednego z podanych: :values.', - 'string' => 'Pole :attribute musi być ciągiem znaków.', - 'timezone' => 'Pole :attribute musi być prawidłową strefą czasową.', - 'unique' => 'Pole :attribute już istnieje.', - 'uploaded' => 'Nie udało się przesłać pliku :attribute.', - 'url' => 'Format pola :attribute jest nieprawidłowy.', - 'uuid' => 'Pole :attribute musi być poprawnym UUID.', + 'starts_with' => 'Pole :attribute musi zaczynać się od jednego z podanych: :values.', + 'string' => 'Pole :attribute musi być ciągiem znaków.', + 'timezone' => 'Pole :attribute musi być prawidłową strefą czasową.', + 'unique' => 'Pole :attribute już istnieje.', + 'uploaded' => 'Nie udało się przesłać pliku :attribute.', + 'url' => 'Format pola :attribute jest nieprawidłowy.', + 'uuid' => 'Pole :attribute musi być poprawnym UUID.', /* |-------------------------------------------------------------------------- diff --git a/lang/pl/voyager.php b/lang/pl/voyager.php index 9e360d0af..c3ccf1cd6 100644 --- a/lang/pl/voyager.php +++ b/lang/pl/voyager.php @@ -9,424 +9,422 @@ ], 'generic' => [ - 'action' => 'Akcja', - 'actions' => 'Akcje', - 'add' => 'Dodaj', - 'add_folder' => 'Dodaj Folder', - 'add_new' => 'Dodaj nowy', - 'all_done' => 'Wszystko dobrze', - 'are_you_sure' => 'Czy jesteś pewien', - 'are_you_sure_delete' => 'Czy na pewno chcesz usunąć', - 'auto_increment' => 'Auto uzupełnianie', - 'browse' => 'Przeglądaj', - 'builder' => 'Konstruktor', - 'bulk_delete' => 'Usuwanie zbiorcze', - 'bulk_delete_confirm' => 'Tak, usuń te', - 'bulk_delete_nothing' => 'Nie wybrałeś niczego do usunięcia', - 'cancel' => 'Anuluj', - 'choose_type' => 'Wybierz typ', - 'click_here' => 'Kliknij tutaj', - 'close' => 'Zamknij', - 'compass' => 'Kompas', - 'created_at' => 'Utworzono', - 'custom' => 'Własne', - 'dashboard' => 'Panel nawigacyjny', - 'database' => 'Baza danych', - 'default' => 'Domyślnie', - 'delete' => 'Usuń', - 'delete_confirm' => 'Tak, usuń!', - 'delete_question' => 'Czy na pewno chcesz to usunąć?', - 'delete_this_confirm' => 'Tak, usuń to', - 'deselect_all' => 'Odznacz wszystko', - 'download' => 'Pobierz', - 'edit' => 'Edytuj', - 'email' => 'E-mail', - 'error_deleting' => 'Przepraszamy, wygląda na to, że wystąpił problem z usunięciem tej wiadomości', - 'exception' => 'Wyjątek', - 'featured' => 'Polecane', - 'field_does_not_exist' => 'Pole nie istnieje', - 'how_to_use' => 'Jak używać', - 'index' => 'Indeks', - 'internal_error' => 'Błąd wewnętrzny', - 'items' => 'element(y)', - 'keep_sidebar_open' => 'Yarr! Zrzuć kotwice! (i pozostaw pasek boczny otwarty)', - 'key' => 'Klucz', - 'last_modified' => 'Ostatnio zmodyfikowano', - 'length' => 'Długość', - 'login' => 'Login', - 'media' => 'Media', - 'menu_builder' => 'Kreator menu', - 'move' => 'Porusz', - 'name' => 'Nazwa', - 'new' => 'Nowe', - 'no' => 'Nie', - 'no_thanks' => 'Nie, dziękuję', - 'not_null' => 'Niepuste', - 'options' => 'Opcje', - 'password' => 'Hasło', - 'permissions' => 'Uprawnienia', - 'profile' => 'Profil', - 'public_url' => 'Publiczny URL', - 'read' => 'Czytaj', - 'rename' => 'Zmień nazwę', - 'required' => 'Wymagane', - 'return_to_list' => 'Powrót do listy', - 'route' => 'Trasa', - 'save' => 'Zapisz', - 'search' => 'Szukaj', - 'select_all' => 'Zaznacz wszystkie', - 'select_group' => 'Wybierz istniejącą grupę lub Dodaj nową', - 'settings' => 'Ustawienia', - 'showing_entries' => 'Pokaż :from do :to z :all wpisu|Pokaż :from do :to z :all wpisów', - 'submit' => 'Zatwierdź', + 'action' => 'Akcja', + 'actions' => 'Akcje', + 'add' => 'Dodaj', + 'add_folder' => 'Dodaj Folder', + 'add_new' => 'Dodaj nowy', + 'all_done' => 'Wszystko dobrze', + 'are_you_sure' => 'Czy jesteś pewien', + 'are_you_sure_delete' => 'Czy na pewno chcesz usunąć', + 'auto_increment' => 'Auto uzupełnianie', + 'browse' => 'Przeglądaj', + 'builder' => 'Konstruktor', + 'bulk_delete' => 'Usuwanie zbiorcze', + 'bulk_delete_confirm' => 'Tak, usuń te', + 'bulk_delete_nothing' => 'Nie wybrałeś niczego do usunięcia', + 'cancel' => 'Anuluj', + 'choose_type' => 'Wybierz typ', + 'click_here' => 'Kliknij tutaj', + 'close' => 'Zamknij', + 'compass' => 'Kompas', + 'created_at' => 'Utworzono', + 'custom' => 'Własne', + 'dashboard' => 'Panel nawigacyjny', + 'database' => 'Baza danych', + 'default' => 'Domyślnie', + 'delete' => 'Usuń', + 'delete_confirm' => 'Tak, usuń!', + 'delete_question' => 'Czy na pewno chcesz to usunąć?', + 'delete_this_confirm' => 'Tak, usuń to', + 'deselect_all' => 'Odznacz wszystko', + 'download' => 'Pobierz', + 'edit' => 'Edytuj', + 'email' => 'E-mail', + 'error_deleting' => 'Przepraszamy, wygląda na to, że wystąpił problem z usunięciem tej wiadomości', + 'exception' => 'Wyjątek', + 'featured' => 'Polecane', + 'field_does_not_exist' => 'Pole nie istnieje', + 'how_to_use' => 'Jak używać', + 'index' => 'Indeks', + 'internal_error' => 'Błąd wewnętrzny', + 'items' => 'element(y)', + 'keep_sidebar_open' => 'Yarr! Zrzuć kotwice! (i pozostaw pasek boczny otwarty)', + 'key' => 'Klucz', + 'last_modified' => 'Ostatnio zmodyfikowano', + 'length' => 'Długość', + 'login' => 'Login', + 'media' => 'Media', + 'menu_builder' => 'Kreator menu', + 'move' => 'Porusz', + 'name' => 'Nazwa', + 'new' => 'Nowe', + 'no' => 'Nie', + 'no_thanks' => 'Nie, dziękuję', + 'not_null' => 'Niepuste', + 'options' => 'Opcje', + 'password' => 'Hasło', + 'permissions' => 'Uprawnienia', + 'profile' => 'Profil', + 'public_url' => 'Publiczny URL', + 'read' => 'Czytaj', + 'rename' => 'Zmień nazwę', + 'required' => 'Wymagane', + 'return_to_list' => 'Powrót do listy', + 'route' => 'Trasa', + 'save' => 'Zapisz', + 'search' => 'Szukaj', + 'select_all' => 'Zaznacz wszystkie', + 'select_group' => 'Wybierz istniejącą grupę lub Dodaj nową', + 'settings' => 'Ustawienia', + 'showing_entries' => 'Pokaż :from do :to z :all wpisu|Pokaż :from do :to z :all wpisów', + 'submit' => 'Zatwierdź', 'successfully_added_new' => 'Pomyślnie dodano nowy', - 'successfully_deleted' => 'Pomyślnie usunięto', - 'successfully_updated' => 'Pomyślnie zaktualizowano', - 'timestamp' => 'Znacznik czasu', - 'title' => 'Tytuł', - 'type' => 'Typ', - 'unsigned' => 'Bez znaku', - 'unstick_sidebar' => 'Odklej boczną belkę', - 'update' => 'Aktualizuj', - 'update_failed' => 'Aktualizacja nie powiodła się', - 'upload' => 'Prześlij', - 'url' => 'URL', - 'view' => 'Widok', - 'viewing' => 'Oglądanie', - 'yes' => 'Tak', - 'yes_please' => 'Tak, proszę', + 'successfully_deleted' => 'Pomyślnie usunięto', + 'successfully_updated' => 'Pomyślnie zaktualizowano', + 'timestamp' => 'Znacznik czasu', + 'title' => 'Tytuł', + 'type' => 'Typ', + 'unsigned' => 'Bez znaku', + 'unstick_sidebar' => 'Odklej boczną belkę', + 'update' => 'Aktualizuj', + 'update_failed' => 'Aktualizacja nie powiodła się', + 'upload' => 'Prześlij', + 'url' => 'URL', + 'view' => 'Widok', + 'viewing' => 'Oglądanie', + 'yes' => 'Tak', + 'yes_please' => 'Tak, proszę', ], 'login' => [ - 'loggingin' => 'Logowanie', + 'loggingin' => 'Logowanie', 'signin_below' => 'Zaloguj się poniżej:', - 'welcome' => 'Witaj w Voyager. Zaginiony panel administracyjny dla Laravel', + 'welcome' => 'Witaj w Voyager. Zaginiony panel administracyjny dla Laravel', ], - + 'profile' => [ - 'avatar' => 'Awatar', - 'edit' => 'Edytuj mój profil', - 'edit_user' => 'Edytuj użytkownika', - 'password' => 'Hasło', + 'avatar' => 'Awatar', + 'edit' => 'Edytuj mój profil', + 'edit_user' => 'Edytuj użytkownika', + 'password' => 'Hasło', 'password_hint' => 'Zostaw puste, aby zachować to samo', - 'role' => 'Rola', - 'user_role' => 'Rola użytkownika', + 'role' => 'Rola', + 'user_role' => 'Rola użytkownika', ], - + 'settings' => [ - 'usage_help' => 'Możesz uzyskać wartość każdego ustawienia w dowolnym miejscu na swojej stronie, dzwoniąc pod', - 'save' => 'Zapisz ustawienia', - 'new' => 'Nowe ustawienie', - 'help_name' => 'Nazwa ustawienia, np. Tytuł administratora', - 'help_key' => 'Klucz ustawienia, np. admin_title', - 'help_option' => '(opcjonalne, dotyczy tylko pewnych typów, jak lista rozwijana lub przycisk radio)', - 'add_new' => 'Dodaj nowe ustawienie', - 'delete_question' => 'Czy na pewno chcesz usunąć ustawienie :setting?', - 'delete_confirm' => 'Tak, usuń to ustawienie', + 'usage_help' => 'Możesz uzyskać wartość każdego ustawienia w dowolnym miejscu na swojej stronie, dzwoniąc pod', + 'save' => 'Zapisz ustawienia', + 'new' => 'Nowe ustawienie', + 'help_name' => 'Nazwa ustawienia, np. Tytuł administratora', + 'help_key' => 'Klucz ustawienia, np. admin_title', + 'help_option' => '(opcjonalne, dotyczy tylko pewnych typów, jak lista rozwijana lub przycisk radio)', + 'add_new' => 'Dodaj nowe ustawienie', + 'delete_question' => 'Czy na pewno chcesz usunąć ustawienie :setting?', + 'delete_confirm' => 'Tak, usuń to ustawienie', 'successfully_created' => 'Ustawienie zostało pomyślnie utworzone', - 'successfully_saved' => 'Ustawienia zostały pomyślnie zapisane', + 'successfully_saved' => 'Ustawienia zostały pomyślnie zapisane', 'successfully_deleted' => 'Ustawienie zostało pomyślnie usunięte', - 'already_at_top' => 'To już jest na górze listy', - 'already_at_bottom' => 'To już jest na dole listy', - 'key_already_exists' => 'Klucz :key już istnieje', - 'moved_order_up' => 'Przeniesiono ustawienie :name wyżej', - 'moved_order_down' => 'Przeniesiono ustawienie :name niżej', + 'already_at_top' => 'To już jest na górze listy', + 'already_at_bottom' => 'To już jest na dole listy', + 'key_already_exists' => 'Klucz :key już istnieje', + 'moved_order_up' => 'Przeniesiono ustawienie :name wyżej', + 'moved_order_down' => 'Przeniesiono ustawienie :name niżej', 'successfully_removed' => 'Pomyślnie usunięto wartość :name', - 'group_general' => 'Ogólne', - 'group_admin' => 'Admin', - 'group_site' => 'Strona', - 'group' => 'Grupa', - 'help_group' => 'Grupa, do której przypisane jest to ustawienie', + 'group_general' => 'Ogólne', + 'group_admin' => 'Admin', + 'group_site' => 'Strona', + 'group' => 'Grupa', + 'help_group' => 'Grupa, do której przypisane jest to ustawienie', ], 'media' => [ - 'add_new_folder' => 'Dodaj nowy folder', - 'audio_support' => 'Twoja przeglądarka nie obsługuje elementu audio.', - 'create_new_folder' => 'Utwórz nowy folder', + 'add_new_folder' => 'Dodaj nowy folder', + 'audio_support' => 'Twoja przeglądarka nie obsługuje elementu audio.', + 'create_new_folder' => 'Utwórz nowy folder', 'delete_folder_question' => 'Usunięcie folderu spowoduje usunięcie wszystkich plików i folderów wewnątrz niego.', - 'destination_folder' => 'Folder docelowy', - 'drag_drop_info' => 'Przeciągnij i upuść pliki lub kliknij poniżej, aby przesłać', - 'error_already_exists' => 'Przepraszamy, istnieje już plik/folder o tej nazwie w tym folderze.', - 'error_creating_dir' => 'Przepraszamy, coś poszło nie tak podczas tworzenia katalogu. '. + 'destination_folder' => 'Folder docelowy', + 'drag_drop_info' => 'Przeciągnij i upuść pliki lub kliknij poniżej, aby przesłać', + 'error_already_exists' => 'Przepraszamy, istnieje już plik/folder o tej nazwie w tym folderze.', + 'error_creating_dir' => 'Przepraszamy, coś poszło nie tak podczas tworzenia katalogu. '. 'Sprawdź uprawnienia.', - 'error_deleting_file' => 'Przepraszamy, coś poszło nie tak podczas usuwania tego pliku. '. + 'error_deleting_file' => 'Przepraszamy, coś poszło nie tak podczas usuwania tego pliku. '. 'Sprawdź uprawnienia.', - 'error_deleting_folder' => 'Przepraszamy, coś poszło nie tak podczas usuwania tego folderu. '. + 'error_deleting_folder' => 'Przepraszamy, coś poszło nie tak podczas usuwania tego folderu. '. 'Sprawdź uprawnienia.', - 'error_may_exist' => 'Plik lub folder może już istnieć pod tą nazwą. Proszę wybrać inną nazwę lub '. + 'error_may_exist' => 'Plik lub folder może już istnieć pod tą nazwą. Proszę wybrać inną nazwę lub '. 'usunąć inny plik.', - 'error_moving' => 'Przepraszamy, wydaje się, że wystąpił problem z przenoszeniem tego pliku/folderu. '. + 'error_moving' => 'Przepraszamy, wydaje się, że wystąpił problem z przenoszeniem tego pliku/folderu. '. 'Upewnij się, że masz odpowiednie uprawnienia.', - 'error_uploading' => 'Błąd przesyłania: Wystąpił nieznany błąd!', + 'error_uploading' => 'Błąd przesyłania: Wystąpił nieznany błąd!', 'folder_exists_already' => 'Przepraszamy, ten folder już istnieje. Proszę go usunąć, jeśli chcesz go ponownie utworzyć.', - 'image_does_not_exist' => 'Obraz nie istnieje', - 'image_removed' => 'Obraz usunięty', - 'library' => 'Biblioteka multimediów', - 'loading' => 'ŁADOWANIE TWOICH PLIKÓW MULTIMEDIALNYCH', - 'move_file_folder' => 'Przenieś plik/folder', - 'new_file_folder' => 'Nowa nazwa pliku/folderu', - 'new_folder_name' => 'Nowa nazwa folderu', - 'no_files_here' => 'Brak plików tutaj.', - 'no_files_in_folder' => 'Brak plików w tym folderze.', - 'nothing_selected' => 'Nie wybrano pliku ani folderu', - 'rename_file_folder' => 'Zmień nazwę pliku/folderu', + 'image_does_not_exist' => 'Obraz nie istnieje', + 'image_removed' => 'Obraz usunięty', + 'library' => 'Biblioteka multimediów', + 'loading' => 'ŁADOWANIE TWOICH PLIKÓW MULTIMEDIALNYCH', + 'move_file_folder' => 'Przenieś plik/folder', + 'new_file_folder' => 'Nowa nazwa pliku/folderu', + 'new_folder_name' => 'Nowa nazwa folderu', + 'no_files_here' => 'Brak plików tutaj.', + 'no_files_in_folder' => 'Brak plików w tym folderze.', + 'nothing_selected' => 'Nie wybrano pliku ani folderu', + 'rename_file_folder' => 'Zmień nazwę pliku/folderu', 'success_uploaded_file' => 'Pomyślnie przesłano nowy plik!', - 'success_uploading' => 'Pomyślnie przesłano obraz!', - 'uploading_wrong_type' => 'Błąd przesyłania: Nieobsługiwany format pliku lub jest zbyt duży, aby przesłać!', - 'video_support' => 'Twoja przeglądarka nie obsługuje znacznika wideo.', - 'crop' => 'Przytnij', - 'crop_and_create' => 'Przytnij i stwórz', + 'success_uploading' => 'Pomyślnie przesłano obraz!', + 'uploading_wrong_type' => 'Błąd przesyłania: Nieobsługiwany format pliku lub jest zbyt duży, aby przesłać!', + 'video_support' => 'Twoja przeglądarka nie obsługuje znacznika wideo.', + 'crop' => 'Przytnij', + 'crop_and_create' => 'Przytnij i stwórz', 'crop_override_confirm' => 'To zastąpi oryginalny obraz, czy na pewno chcesz kontynuować?', - 'crop_image' => 'Przytnij obraz', - 'success_crop_image' => 'Pomyślnie przytnięto obraz', - 'height' => 'Wysokość: ', - 'width' => 'Szerokość: ', + 'crop_image' => 'Przytnij obraz', + 'success_crop_image' => 'Pomyślnie przytnięto obraz', + 'height' => 'Wysokość: ', + 'width' => 'Szerokość: ', ], 'menu_builder' => [ - 'color' => 'Kolor w formacie RGB lub heksadecymalnym (opcjonalny)', - 'color_ph' => 'Kolor (np. #ffffff lub rgb(255, 255, 255)', - 'create_new_item' => 'Utwórz nowy element menu', - 'delete_item_confirm' => 'Tak, usuń ten element menu', - 'delete_item_question' => 'Czy na pewno chcesz usunąć ten element menu?', - 'drag_drop_info' => 'Przeciągnij i upuść elementy menu poniżej, aby je przearanżować.', - 'dynamic_route' => 'Trasa dynamiczna', - 'edit_item' => 'Edytuj element menu', - 'icon_class' => 'Klasa ikony czcionkowej dla elementu menu (Użyj klasy ikon z', - 'icon_class2' => 'czcionki Voyager)', - 'icon_class_ph' => 'Klasa ikony (opcjonalne)', - 'item_route' => 'Trasa dla elementu menu', - 'item_title' => 'Tytuł elementu menu', - 'link_type' => 'Typ łącza', - 'new_menu_item' => 'Nowy element menu', - 'open_in' => 'Otwórz w', - 'open_new' => 'Nowa karta/okno', - 'open_same' => 'Ta sama karta/okno', - 'route_parameter' => 'Parametry trasy (jeśli występują)', - 'static_url' => 'Statyczny URL', - 'successfully_created' => 'Pomyślnie utworzono nowy element menu.', - 'successfully_deleted' => 'Pomyślnie usunięto element menu.', - 'successfully_updated' => 'Pomyślnie zaktualizowano element menu.', - 'updated_order' => 'Pomyślnie zaktualizowano kolejność menu.', - 'url' => 'URL elementu menu', - 'usage_hint' => 'Możesz wyświetlić menu w dowolnym miejscu na swojej stronie, wywołując|Możesz wyświetlić to menu w dowolnym miejscu na swojej stronie, wywołując', - ], - - 'post' => [ - 'category' => 'Kategoria wpisu', - 'content' => 'Treść wpisu', - 'details' => 'Szczegóły wpisu', - 'excerpt' => 'Wyciąg Krótki opis tego wpisu', - 'image' => 'Obraz wpisu', - 'meta_description' => 'Opis meta', - 'meta_keywords' => 'Słowa kluczowe meta', - 'new' => 'Utwórz nowy wpis', - 'seo_content' => 'Zawartość SEO', - 'seo_title' => 'Tytuł SEO', - 'slug' => 'Adres URL wpisu', - 'status' => 'Status wpisu', - 'status_draft' => 'szkic', - 'status_pending' => 'oczekujący', - 'status_published' => 'opublikowany', - 'title' => 'Tytuł wpisu', - 'title_sub' => 'Tytuł Twojego wpisu', - 'update' => 'Aktualizuj wpis', - ], + 'color' => 'Kolor w formacie RGB lub heksadecymalnym (opcjonalny)', + 'color_ph' => 'Kolor (np. #ffffff lub rgb(255, 255, 255)', + 'create_new_item' => 'Utwórz nowy element menu', + 'delete_item_confirm' => 'Tak, usuń ten element menu', + 'delete_item_question' => 'Czy na pewno chcesz usunąć ten element menu?', + 'drag_drop_info' => 'Przeciągnij i upuść elementy menu poniżej, aby je przearanżować.', + 'dynamic_route' => 'Trasa dynamiczna', + 'edit_item' => 'Edytuj element menu', + 'icon_class' => 'Klasa ikony czcionkowej dla elementu menu (Użyj klasy ikon z', + 'icon_class2' => 'czcionki Voyager)', + 'icon_class_ph' => 'Klasa ikony (opcjonalne)', + 'item_route' => 'Trasa dla elementu menu', + 'item_title' => 'Tytuł elementu menu', + 'link_type' => 'Typ łącza', + 'new_menu_item' => 'Nowy element menu', + 'open_in' => 'Otwórz w', + 'open_new' => 'Nowa karta/okno', + 'open_same' => 'Ta sama karta/okno', + 'route_parameter' => 'Parametry trasy (jeśli występują)', + 'static_url' => 'Statyczny URL', + 'successfully_created' => 'Pomyślnie utworzono nowy element menu.', + 'successfully_deleted' => 'Pomyślnie usunięto element menu.', + 'successfully_updated' => 'Pomyślnie zaktualizowano element menu.', + 'updated_order' => 'Pomyślnie zaktualizowano kolejność menu.', + 'url' => 'URL elementu menu', + 'usage_hint' => 'Możesz wyświetlić menu w dowolnym miejscu na swojej stronie, wywołując|Możesz wyświetlić to menu w dowolnym miejscu na swojej stronie, wywołując', + ], + + 'post' => [ + 'category' => 'Kategoria wpisu', + 'content' => 'Treść wpisu', + 'details' => 'Szczegóły wpisu', + 'excerpt' => 'Wyciąg Krótki opis tego wpisu', + 'image' => 'Obraz wpisu', + 'meta_description' => 'Opis meta', + 'meta_keywords' => 'Słowa kluczowe meta', + 'new' => 'Utwórz nowy wpis', + 'seo_content' => 'Zawartość SEO', + 'seo_title' => 'Tytuł SEO', + 'slug' => 'Adres URL wpisu', + 'status' => 'Status wpisu', + 'status_draft' => 'szkic', + 'status_pending' => 'oczekujący', + 'status_published' => 'opublikowany', + 'title' => 'Tytuł wpisu', + 'title_sub' => 'Tytuł Twojego wpisu', + 'update' => 'Aktualizuj wpis', + ], 'database' => [ - 'add_bread' => 'Dodaj BREAD do tej tabeli', - 'add_new_column' => 'Dodaj nową kolumnę', - 'add_softdeletes' => 'Dodaj Soft Deletes', - 'add_timestamps' => 'Dodaj znaczniki czasu', - 'already_exists' => 'już istnieje', - 'already_exists_table' => 'Tabela :table już istnieje', - 'bread_crud_actions' => 'Akcje BREAD/CRUD', - 'bread_info' => 'Informacje BREAD', - 'browse_bread' => 'Przeglądaj BREAD', - 'column' => 'Kolumna', - 'composite_warning' => 'Ostrzeżenie: ta kolumna jest częścią indeksu złożonego', - 'controller_name' => 'Nazwa kontrolera', - 'controller_name_hint' => 'np. PageController, jeśli pozostawisz to pole puste, zostanie użyty kontroler BREAD', - 'create_bread_for_table' => 'Utwórz BREAD dla tabeli :table', - 'create_migration' => 'Utworzyć migrację dla tej tabeli?', - 'create_model_table' => 'Utworzyć model dla tej tabeli?', - 'create_new_table' => 'Utwórz nową tabelę', - 'create_your_new_table' => 'Utwórz swoją nową tabelę', - 'default' => 'Domyślnie', - 'delete_bread' => 'Usuń BREAD', + 'add_bread' => 'Dodaj BREAD do tej tabeli', + 'add_new_column' => 'Dodaj nową kolumnę', + 'add_softdeletes' => 'Dodaj Soft Deletes', + 'add_timestamps' => 'Dodaj znaczniki czasu', + 'already_exists' => 'już istnieje', + 'already_exists_table' => 'Tabela :table już istnieje', + 'bread_crud_actions' => 'Akcje BREAD/CRUD', + 'bread_info' => 'Informacje BREAD', + 'browse_bread' => 'Przeglądaj BREAD', + 'column' => 'Kolumna', + 'composite_warning' => 'Ostrzeżenie: ta kolumna jest częścią indeksu złożonego', + 'controller_name' => 'Nazwa kontrolera', + 'controller_name_hint' => 'np. PageController, jeśli pozostawisz to pole puste, zostanie użyty kontroler BREAD', + 'create_bread_for_table' => 'Utwórz BREAD dla tabeli :table', + 'create_migration' => 'Utworzyć migrację dla tej tabeli?', + 'create_model_table' => 'Utworzyć model dla tej tabeli?', + 'create_new_table' => 'Utwórz nową tabelę', + 'create_your_new_table' => 'Utwórz swoją nową tabelę', + 'default' => 'Domyślnie', + 'delete_bread' => 'Usuń BREAD', 'delete_bread_before_table' => 'Upewnij się, że usunąłeś BREAD z tej tabeli przed jej usunięciem.', - 'delete_table_bread_conf' => 'Tak, usuń BREAD', - 'delete_table_bread_quest' => 'Czy na pewno chcesz usunąć BREAD z tabeli :table?', - 'delete_table_confirm' => 'Tak, usuń tę tabelę', - 'delete_table_question' => 'Czy na pewno chcesz usunąć tabelę :table?', - 'description' => 'Opis', - 'display_name' => 'Nazwa wyświetlana', - 'display_name_plural' => 'Nazwa wyświetlana (liczba mnoga)', - 'display_name_singular' => 'Nazwa wyświetlana (liczba pojedyncza)', - 'edit_bread' => 'Edytuj BREAD', - 'edit_bread_for_table' => 'Edytuj BREAD dla tabeli :table', - 'edit_rows' => 'Edytuj wiersze tabeli :table poniżej', - 'edit_table' => 'Edytuj tabelę :table poniżej', - 'edit_table_not_exist' => 'Tabela, którą chcesz edytować, nie istnieje', - 'error_creating_bread' => 'Przepraszamy, wygląda na to, że pojawił się problem podczas tworzenia BREAD', - 'error_removing_bread' => 'Przepraszamy, wygląda na to, że pojawił się problem podczas usuwania BREAD', - 'error_updating_bread' => 'Przepraszamy, wygląda na to, że pojawił się problem podczas aktualizacji BREAD', - 'extra' => 'Dodatkowe', - 'field' => 'Pole', - 'field_safe_failed' => 'Nie udało się zapisać pola :field, cofamy zmiany!', - 'generate_permissions' => 'Generuj uprawnienia', - 'icon_class' => 'Ikona do użycia dla tej tabeli', - 'icon_hint' => 'Ikona (opcjonalnie) Użyj', - 'icon_hint2' => 'klasy czcionek Voyager', - 'index' => 'INDEKS', - 'input_type' => 'Typ wejścia', - 'key' => 'Klucz', - 'model_class' => 'Nazwa klasy modelu', - 'model_name' => 'Nazwa modelu', - 'model_name_ph' => 'np. \App\Models\User, jeśli pozostawisz to pole puste, zostanie użyta nazwa tabeli', - 'name_warning' => 'Nadaj nazwę kolumnie przed dodaniem indeksu', - 'no_composites_warning' => 'Ta tabela ma indeksy złożone. Należy pamiętać, że nie są one obecnie obsługiwane. Bądź ostrożny, próbując dodawać/usuwać indeksy.', - 'null' => 'Null', - 'optional_details' => 'Opcjonalne szczegóły', - 'policy_class' => 'Nazwa klasy zasad', - 'policy_name' => 'Nazwa zasady', - 'policy_name_ph' => 'np. \App\Policies\UserPolicy, jeśli pozostawisz to pole puste, zostanie użyta domyślna zasada', - 'primary' => 'PRIMARY', - 'server_pagination' => 'Paginacja po stronie serwera', - 'success_create_table' => 'Pomyślnie utworzono tabelę :table', - 'success_created_bread' => 'Pomyślnie utworzono nowy BREAD', - 'success_delete_table' => 'Pomyślnie usunięto tabelę :table', - 'success_remove_bread' => 'Pomyślnie usunięto BREAD z :datatype', - 'success_update_bread' => 'Pomyślnie zaktualizowano BREAD dla :datatype', - 'success_update_table' => 'Pomyślnie zaktualizowano tabelę :table', - 'table_actions' => 'Akcje tabeli', - 'table_columns' => 'Kolumny tabeli', - 'table_has_index' => 'Tabela ma już indeks podstawowy.', - 'table_name' => 'Nazwa tabeli', - 'table_no_columns' => 'Tabela nie ma żadnych kolumn...', - 'type' => 'Typ', - 'type_not_supported' => 'Ten typ nie jest obsługiwany', - 'unique' => 'UNIQUE', - 'unknown_type' => 'Nieznany typ', - 'update_table' => 'Aktualizuj tabelę', - 'url_slug' => 'URL Slug (musi być unikalny)', - 'url_slug_ph' => 'URL slug (np. wpisy)', - 'visibility' => 'Widoczność', - 'relationship' => [ - 'relationship' => 'Relacja', - 'relationships' => 'Relacje', - 'has_one' => 'Ma jeden', - 'has_many' => 'Ma wiele', - 'belongs_to' => 'Należy do', - 'belongs_to_many' => 'Należy do wielu', - 'which_column_from' => 'Która kolumna z', + 'delete_table_bread_conf' => 'Tak, usuń BREAD', + 'delete_table_bread_quest' => 'Czy na pewno chcesz usunąć BREAD z tabeli :table?', + 'delete_table_confirm' => 'Tak, usuń tę tabelę', + 'delete_table_question' => 'Czy na pewno chcesz usunąć tabelę :table?', + 'description' => 'Opis', + 'display_name' => 'Nazwa wyświetlana', + 'display_name_plural' => 'Nazwa wyświetlana (liczba mnoga)', + 'display_name_singular' => 'Nazwa wyświetlana (liczba pojedyncza)', + 'edit_bread' => 'Edytuj BREAD', + 'edit_bread_for_table' => 'Edytuj BREAD dla tabeli :table', + 'edit_rows' => 'Edytuj wiersze tabeli :table poniżej', + 'edit_table' => 'Edytuj tabelę :table poniżej', + 'edit_table_not_exist' => 'Tabela, którą chcesz edytować, nie istnieje', + 'error_creating_bread' => 'Przepraszamy, wygląda na to, że pojawił się problem podczas tworzenia BREAD', + 'error_removing_bread' => 'Przepraszamy, wygląda na to, że pojawił się problem podczas usuwania BREAD', + 'error_updating_bread' => 'Przepraszamy, wygląda na to, że pojawił się problem podczas aktualizacji BREAD', + 'extra' => 'Dodatkowe', + 'field' => 'Pole', + 'field_safe_failed' => 'Nie udało się zapisać pola :field, cofamy zmiany!', + 'generate_permissions' => 'Generuj uprawnienia', + 'icon_class' => 'Ikona do użycia dla tej tabeli', + 'icon_hint' => 'Ikona (opcjonalnie) Użyj', + 'icon_hint2' => 'klasy czcionek Voyager', + 'index' => 'INDEKS', + 'input_type' => 'Typ wejścia', + 'key' => 'Klucz', + 'model_class' => 'Nazwa klasy modelu', + 'model_name' => 'Nazwa modelu', + 'model_name_ph' => 'np. \App\Models\User, jeśli pozostawisz to pole puste, zostanie użyta nazwa tabeli', + 'name_warning' => 'Nadaj nazwę kolumnie przed dodaniem indeksu', + 'no_composites_warning' => 'Ta tabela ma indeksy złożone. Należy pamiętać, że nie są one obecnie obsługiwane. Bądź ostrożny, próbując dodawać/usuwać indeksy.', + 'null' => 'Null', + 'optional_details' => 'Opcjonalne szczegóły', + 'policy_class' => 'Nazwa klasy zasad', + 'policy_name' => 'Nazwa zasady', + 'policy_name_ph' => 'np. \App\Policies\UserPolicy, jeśli pozostawisz to pole puste, zostanie użyta domyślna zasada', + 'primary' => 'PRIMARY', + 'server_pagination' => 'Paginacja po stronie serwera', + 'success_create_table' => 'Pomyślnie utworzono tabelę :table', + 'success_created_bread' => 'Pomyślnie utworzono nowy BREAD', + 'success_delete_table' => 'Pomyślnie usunięto tabelę :table', + 'success_remove_bread' => 'Pomyślnie usunięto BREAD z :datatype', + 'success_update_bread' => 'Pomyślnie zaktualizowano BREAD dla :datatype', + 'success_update_table' => 'Pomyślnie zaktualizowano tabelę :table', + 'table_actions' => 'Akcje tabeli', + 'table_columns' => 'Kolumny tabeli', + 'table_has_index' => 'Tabela ma już indeks podstawowy.', + 'table_name' => 'Nazwa tabeli', + 'table_no_columns' => 'Tabela nie ma żadnych kolumn...', + 'type' => 'Typ', + 'type_not_supported' => 'Ten typ nie jest obsługiwany', + 'unique' => 'UNIQUE', + 'unknown_type' => 'Nieznany typ', + 'update_table' => 'Aktualizuj tabelę', + 'url_slug' => 'URL Slug (musi być unikalny)', + 'url_slug_ph' => 'URL slug (np. wpisy)', + 'visibility' => 'Widoczność', + 'relationship' => [ + 'relationship' => 'Relacja', + 'relationships' => 'Relacje', + 'has_one' => 'Ma jeden', + 'has_many' => 'Ma wiele', + 'belongs_to' => 'Należy do', + 'belongs_to_many' => 'Należy do wielu', + 'which_column_from' => 'Która kolumna z', 'is_used_to_reference' => 'jest używana do odwoływania się do', - 'pivot_table' => 'Tabela przestawna', - 'selection_details' => 'Szczegóły wyboru', - 'display_the' => 'Wyświetl', - 'store_the' => 'Zapisz', - 'easy_there' => 'Spokojnie kapitanie', - 'before_create' => 'Aby utworzyć nową relację, musisz najpierw utworzyć BREAD.
Następnie wróć, aby edytować BREAD i będziesz mógł dodać relacje.
Dzięki.', - 'cancel' => 'Anuluj', - 'add_new' => 'Dodaj nową relację', - 'open' => 'Otwórz', - 'close' => 'Zamknij', + 'pivot_table' => 'Tabela przestawna', + 'selection_details' => 'Szczegóły wyboru', + 'display_the' => 'Wyświetl', + 'store_the' => 'Zapisz', + 'easy_there' => 'Spokojnie kapitanie', + 'before_create' => 'Aby utworzyć nową relację, musisz najpierw utworzyć BREAD.
Następnie wróć, aby edytować BREAD i będziesz mógł dodać relacje.
Dzięki.', + 'cancel' => 'Anuluj', + 'add_new' => 'Dodaj nową relację', + 'open' => 'Otwórz', + 'close' => 'Zamknij', 'relationship_details' => 'Szczegóły relacji', - 'browse' => 'Przeglądaj', - 'read' => 'Odczytaj', - 'edit' => 'Edytuj', - 'add' => 'Dodaj', - 'delete' => 'Usuń', - 'create' => 'Utwórz relację', - 'namespace' => 'Przestrzeń nazw modelu (np. App\Category)', + 'browse' => 'Przeglądaj', + 'read' => 'Odczytaj', + 'edit' => 'Edytuj', + 'add' => 'Dodaj', + 'delete' => 'Usuń', + 'create' => 'Utwórz relację', + 'namespace' => 'Przestrzeń nazw modelu (np. App\Category)', ], ], - 'dimmer' => [ - 'page' => 'Strona|Strony', + 'page' => 'Strona|Strony', 'page_link_text' => 'Zobacz wszystkie strony', - 'page_text' => 'Masz :count :string w swojej bazie danych. Kliknij poniższy przycisk, aby zobaczyć wszystkie strony.', - 'post' => 'Wpis|Wpisy', + 'page_text' => 'Masz :count :string w swojej bazie danych. Kliknij poniższy przycisk, aby zobaczyć wszystkie strony.', + 'post' => 'Wpis|Wpisy', 'post_link_text' => 'Zobacz wszystkie wpisy', - 'post_text' => 'Masz :count :string w swojej bazie danych. Kliknij poniższy przycisk, aby zobaczyć wszystkie wpisy.', - 'user' => 'Użytkownik|Użytkownicy', + 'post_text' => 'Masz :count :string w swojej bazie danych. Kliknij poniższy przycisk, aby zobaczyć wszystkie wpisy.', + 'user' => 'Użytkownik|Użytkownicy', 'user_link_text' => 'Zobacz wszystkich użytkowników', - 'user_text' => 'Masz :count :string w swojej bazie danych. Kliknij poniższy przycisk, aby zobaczyć wszystkich użytkowników.', + 'user_text' => 'Masz :count :string w swojej bazie danych. Kliknij poniższy przycisk, aby zobaczyć wszystkich użytkowników.', ], - + 'form' => [ - 'field_password_keep' => 'Pozostaw puste, aby zachować to samo', + 'field_password_keep' => 'Pozostaw puste, aby zachować to samo', 'field_select_dd_relationship' => 'Upewnij się, że ustawiono odpowiednią relację w metodzie :method klasy :class.', - 'type_checkbox' => 'Pole wyboru', - 'type_codeeditor' => 'Edytor kodu', - 'type_file' => 'Plik', - 'type_image' => 'Obraz', - 'type_radiobutton' => 'Przycisk opcji', - 'type_richtextbox' => 'Edytor tekstu sformatowanego', + 'type_checkbox' => 'Pole wyboru', + 'type_codeeditor' => 'Edytor kodu', + 'type_file' => 'Plik', + 'type_image' => 'Obraz', + 'type_radiobutton' => 'Przycisk opcji', + 'type_richtextbox' => 'Edytor tekstu sformatowanego', 'type_selectdropdown' => 'Lista rozwijana', - 'type_textarea' => 'Pole tekstowe wielowierszowe', - 'type_textbox' => 'Pole tekstowe', + 'type_textarea' => 'Pole tekstowe wielowierszowe', + 'type_textbox' => 'Pole tekstowe', ], - + // DataTable translations from: https://github.com/DataTables/Plugins/tree/master/i18n 'datatable' => [ - 'sEmptyTable' => 'Brak dostępnych danych w tabeli', - 'sInfo' => 'Wyświetlanie od _START_ do _END_ z _TOTAL_ pozycji', - 'sInfoEmpty' => 'Wyświetlanie 0 do 0 z 0 pozycji', - 'sInfoFiltered' => '(wyfiltrowane z _MAX_ wszystkich pozycji)', - 'sInfoPostFix' => '', - 'sInfoThousands' => ',', - 'sLengthMenu' => 'Pokaż _MENU_ pozycji', + 'sEmptyTable' => 'Brak dostępnych danych w tabeli', + 'sInfo' => 'Wyświetlanie od _START_ do _END_ z _TOTAL_ pozycji', + 'sInfoEmpty' => 'Wyświetlanie 0 do 0 z 0 pozycji', + 'sInfoFiltered' => '(wyfiltrowane z _MAX_ wszystkich pozycji)', + 'sInfoPostFix' => '', + 'sInfoThousands' => ',', + 'sLengthMenu' => 'Pokaż _MENU_ pozycji', 'sLoadingRecords' => 'Ładowanie...', - 'sProcessing' => 'Przetwarzanie...', - 'sSearch' => 'Szukaj:', - 'sZeroRecords' => 'Nie znaleziono pasujących rekordów', - 'oPaginate' => [ - 'sFirst' => 'Pierwsza', - 'sLast' => 'Ostatnia', - 'sNext' => 'Następna', + 'sProcessing' => 'Przetwarzanie...', + 'sSearch' => 'Szukaj:', + 'sZeroRecords' => 'Nie znaleziono pasujących rekordów', + 'oPaginate' => [ + 'sFirst' => 'Pierwsza', + 'sLast' => 'Ostatnia', + 'sNext' => 'Następna', 'sPrevious' => 'Poprzednia', ], 'oAria' => [ - 'sSortAscending' => ': aktywuj, aby posortować kolumnę rosnąco', + 'sSortAscending' => ': aktywuj, aby posortować kolumnę rosnąco', 'sSortDescending' => ': aktywuj, aby posortować kolumnę malejąco', ], ], - + 'theme' => [ - 'footer_copyright' => 'Zrobione z przez', + 'footer_copyright' => 'Zrobione z przez', 'footer_copyright2' => 'Zrobione z rumem i jeszcze więcej rumu', ], - + 'json' => [ - 'invalid' => 'Nieprawidłowy JSON', - 'invalid_message' => 'Wydaje się, że wprowadziłeś nieprawidłowy JSON.', - 'valid' => 'Prawidłowy JSON', + 'invalid' => 'Nieprawidłowy JSON', + 'invalid_message' => 'Wydaje się, że wprowadziłeś nieprawidłowy JSON.', + 'valid' => 'Prawidłowy JSON', 'validation_errors' => 'Błędy walidacji', ], - 'analytics' => [ - 'by_pageview' => 'Według wyświetleń strony', - 'by_sessions' => 'Według sesji', - 'by_users' => 'Według użytkowników', + 'by_pageview' => 'Według wyświetleń strony', + 'by_sessions' => 'Według sesji', + 'by_users' => 'Według użytkowników', 'no_client_id' => 'Aby zobaczyć analizy, musisz uzyskać identyfikator klienta Google Analytics i dodać go do swoich ustawień pod kluczem google_analytics_client_id. Otrzymaj swój klucz w konsoli deweloperskiej Google:', - 'set_view' => 'Wybierz widok', - 'this_vs_last_week' => 'W tym tygodniu w porównaniu z poprzednim tygodniem', - 'this_vs_last_year' => 'W tym roku w porównaniu z poprzednim rokiem', - 'top_browsers' => 'Najpopularniejsze przeglądarki', - 'top_countries' => 'Najpopularniejsze kraje', + 'set_view' => 'Wybierz widok', + 'this_vs_last_week' => 'W tym tygodniu w porównaniu z poprzednim tygodniem', + 'this_vs_last_year' => 'W tym roku w porównaniu z poprzednim rokiem', + 'top_browsers' => 'Najpopularniejsze przeglądarki', + 'top_countries' => 'Najpopularniejsze kraje', 'various_visualizations' => 'Różne wizualizacje', ], - + 'error' => [ - 'symlink_created_text' => 'Właśnie utworzyliśmy brakujący symlink dla Ciebie.', + 'symlink_created_text' => 'Właśnie utworzyliśmy brakujący symlink dla Ciebie.', 'symlink_created_title' => 'Utworzono brakujący symlink do przechowywania', - 'symlink_failed_text' => 'Nie udało nam się wygenerować brakującego symlinku dla Twojej aplikacji. Wygląda na to, że Twój dostawca hostingu go nie obsługuje.', - 'symlink_failed_title' => 'Nie można utworzyć brakującego symlinku do przechowywania', + 'symlink_failed_text' => 'Nie udało nam się wygenerować brakującego symlinku dla Twojej aplikacji. Wygląda na to, że Twój dostawca hostingu go nie obsługuje.', + 'symlink_failed_title' => 'Nie można utworzyć brakującego symlinku do przechowywania', 'symlink_missing_button' => 'Napraw to', - 'symlink_missing_text' => 'Nie udało nam się znaleźć brakującego symlinku do przechowywania. Może to powodować problemy z wczytywaniem plików multimedialnych z przeglądarki.', + 'symlink_missing_text' => 'Nie udało nam się znaleźć brakującego symlinku do przechowywania. Może to powodować problemy z wczytywaniem plików multimedialnych z przeglądarki.', 'symlink_missing_title' => 'Brakujący symlink do przechowywania', ], ]; diff --git a/lang/pt/voyager.php b/lang/pt/voyager.php index 2e508d07d..bf0b56169 100644 --- a/lang/pt/voyager.php +++ b/lang/pt/voyager.php @@ -9,367 +9,367 @@ ], 'generic' => [ - 'action' => 'Ação', - 'actions' => 'Ações', - 'add' => 'Adicionar', - 'add_folder' => 'Adicionar Pasta', - 'add_new' => 'Adicionar', - 'all_done' => 'Concluído', - 'are_you_sure' => 'Tem certeza', - 'are_you_sure_delete' => 'Tem certeza de que deseja remover', - 'auto_increment' => 'Incremento automático', - 'browse' => 'Navegar', - 'builder' => 'Construtor', - 'cancel' => 'Cancelar', - 'choose_type' => 'Escolha o tipo', - 'click_here' => 'Clique aqui', - 'close' => 'Fechar', - 'compass' => 'Bússola', - 'created_at' => 'Criado em', - 'custom' => 'Personalizado', - 'dashboard' => 'Painel de Controle', - 'database' => 'Base de dados', - 'default' => 'Padrão', - 'delete' => 'Remover', - 'delete_confirm' => 'Sim, Remover!', - 'delete_question' => 'Tem certeza de que deseja remover isto', - 'delete_this_confirm' => 'Sim, exclua isto', - 'deselect_all' => 'Desmarcar todos', - 'download' => 'Descarregar', - 'edit' => 'Editar', - 'email' => 'E-mail', - 'error_deleting' => 'Oops, ocorreu um problema ao remover', - 'exception' => 'Exceção', - 'featured' => 'Destacado', - 'field_does_not_exist' => 'O campo não existe', - 'how_to_use' => 'Como usar', - 'index' => 'Índice', - 'internal_error' => 'Erro interno', - 'items' => 'item(s)', - 'keep_sidebar_open' => 'Arrrgh! Soltem as âncoras! (e mantenha a barra lateral aberta)', - 'key' => 'Chave', - 'last_modified' => 'Última modificação', - 'length' => 'comprimento', - 'login' => 'Login', - 'media' => 'Media', - 'menu_builder' => 'Construtor de Menu', - 'move' => 'Mover', - 'name' => 'Nome', - 'new' => 'Novo', - 'no' => 'Não', - 'no_thanks' => 'Não Obrigado', - 'not_null' => 'Não Nulo', - 'options' => 'Opções', - 'password' => 'Password', - 'permissions' => 'Permissões', - 'profile' => 'Perfil', - 'public_url' => 'URL público', - 'read' => 'Ler', - 'rename' => 'Renomear', - 'required' => 'Requerido', - 'return_to_list' => 'Voltar à lista', - 'route' => 'Rota', - 'save' => 'Guardar', - 'search' => 'Procurar', - 'select_all' => 'Selecione Todos', - 'settings' => 'Configurações', - 'showing_entries' => 'Mostrando :from a :to de :all entrada|Mostrando :from a :to de :all entradas', - 'submit' => 'Submeter', + 'action' => 'Ação', + 'actions' => 'Ações', + 'add' => 'Adicionar', + 'add_folder' => 'Adicionar Pasta', + 'add_new' => 'Adicionar', + 'all_done' => 'Concluído', + 'are_you_sure' => 'Tem certeza', + 'are_you_sure_delete' => 'Tem certeza de que deseja remover', + 'auto_increment' => 'Incremento automático', + 'browse' => 'Navegar', + 'builder' => 'Construtor', + 'cancel' => 'Cancelar', + 'choose_type' => 'Escolha o tipo', + 'click_here' => 'Clique aqui', + 'close' => 'Fechar', + 'compass' => 'Bússola', + 'created_at' => 'Criado em', + 'custom' => 'Personalizado', + 'dashboard' => 'Painel de Controle', + 'database' => 'Base de dados', + 'default' => 'Padrão', + 'delete' => 'Remover', + 'delete_confirm' => 'Sim, Remover!', + 'delete_question' => 'Tem certeza de que deseja remover isto', + 'delete_this_confirm' => 'Sim, exclua isto', + 'deselect_all' => 'Desmarcar todos', + 'download' => 'Descarregar', + 'edit' => 'Editar', + 'email' => 'E-mail', + 'error_deleting' => 'Oops, ocorreu um problema ao remover', + 'exception' => 'Exceção', + 'featured' => 'Destacado', + 'field_does_not_exist' => 'O campo não existe', + 'how_to_use' => 'Como usar', + 'index' => 'Índice', + 'internal_error' => 'Erro interno', + 'items' => 'item(s)', + 'keep_sidebar_open' => 'Arrrgh! Soltem as âncoras! (e mantenha a barra lateral aberta)', + 'key' => 'Chave', + 'last_modified' => 'Última modificação', + 'length' => 'comprimento', + 'login' => 'Login', + 'media' => 'Media', + 'menu_builder' => 'Construtor de Menu', + 'move' => 'Mover', + 'name' => 'Nome', + 'new' => 'Novo', + 'no' => 'Não', + 'no_thanks' => 'Não Obrigado', + 'not_null' => 'Não Nulo', + 'options' => 'Opções', + 'password' => 'Password', + 'permissions' => 'Permissões', + 'profile' => 'Perfil', + 'public_url' => 'URL público', + 'read' => 'Ler', + 'rename' => 'Renomear', + 'required' => 'Requerido', + 'return_to_list' => 'Voltar à lista', + 'route' => 'Rota', + 'save' => 'Guardar', + 'search' => 'Procurar', + 'select_all' => 'Selecione Todos', + 'settings' => 'Configurações', + 'showing_entries' => 'Mostrando :from a :to de :all entrada|Mostrando :from a :to de :all entradas', + 'submit' => 'Submeter', 'successfully_added_new' => 'Adicionado com sucesso', - 'successfully_deleted' => 'Removido com sucesso', - 'successfully_updated' => 'Atualizado com sucesso', - 'timestamp' => 'Timestamp', //todo find suitable translation - 'title' => 'Título', - 'type' => 'Tipo', - 'unsigned' => 'Não assinado', - 'unstick_sidebar' => 'Descolar a barra lateral', - 'update' => 'Atualizar', - 'update_failed' => 'atualização falhou', - 'upload' => 'Upload', - 'url' => 'URL', - 'view' => 'Ver', - 'viewing' => 'Visualizando', - 'yes' => 'Sim', - 'yes_please' => 'Sim, por favor', + 'successfully_deleted' => 'Removido com sucesso', + 'successfully_updated' => 'Atualizado com sucesso', + 'timestamp' => 'Timestamp', // todo find suitable translation + 'title' => 'Título', + 'type' => 'Tipo', + 'unsigned' => 'Não assinado', + 'unstick_sidebar' => 'Descolar a barra lateral', + 'update' => 'Atualizar', + 'update_failed' => 'atualização falhou', + 'upload' => 'Upload', + 'url' => 'URL', + 'view' => 'Ver', + 'viewing' => 'Visualizando', + 'yes' => 'Sim', + 'yes_please' => 'Sim, por favor', ], 'login' => [ - 'loggingin' => 'A iniciar sessão', + 'loggingin' => 'A iniciar sessão', 'signin_below' => 'Iniciar sessão abaixo:', - 'welcome' => 'Bem-vindo ao Voyager. O painel de administração que faltava ao Laravel', + 'welcome' => 'Bem-vindo ao Voyager. O painel de administração que faltava ao Laravel', ], 'profile' => [ - 'avatar' => 'Avatar', - 'edit' => 'Editar o meu perfil', - 'edit_user' => 'Editar Utilizador', - 'password' => 'Password', + 'avatar' => 'Avatar', + 'edit' => 'Editar o meu perfil', + 'edit_user' => 'Editar Utilizador', + 'password' => 'Password', 'password_hint' => 'Deixar vazio para manter o valor atual', - 'role' => 'Função', - 'user_role' => 'Função do Utilizador', + 'role' => 'Função', + 'user_role' => 'Função do Utilizador', ], 'settings' => [ - 'usage_help' => 'Pode obter o valor de cada configuração em qualquer lugar em seu site, executando', - 'save' => 'Guardar configurações', - 'new' => 'Nova configuração', - 'help_name' => 'Nome da configuração ex: Título do Administrador', - 'help_key' => 'Chave da configuração ex: title_administrador', - 'help_option' => '(Opcional, aplica-se apenas a certos tipos, como dropdown ou botão de rádio)', - 'add_new' => 'Adicionar configuração', - 'delete_question' => 'Tem certeza de que deseja remover a Configuração :setting?', - 'delete_confirm' => 'Sim, remover esta configuração', + 'usage_help' => 'Pode obter o valor de cada configuração em qualquer lugar em seu site, executando', + 'save' => 'Guardar configurações', + 'new' => 'Nova configuração', + 'help_name' => 'Nome da configuração ex: Título do Administrador', + 'help_key' => 'Chave da configuração ex: title_administrador', + 'help_option' => '(Opcional, aplica-se apenas a certos tipos, como dropdown ou botão de rádio)', + 'add_new' => 'Adicionar configuração', + 'delete_question' => 'Tem certeza de que deseja remover a Configuração :setting?', + 'delete_confirm' => 'Sim, remover esta configuração', 'successfully_created' => 'Configurações criadas com sucesso', - 'successfully_saved' => 'Configurações guardadas com sucesso', + 'successfully_saved' => 'Configurações guardadas com sucesso', 'successfully_deleted' => 'Configuração removida com sucesso', - 'already_at_top' => 'Já chegou ao topo da lista', - 'already_at_bottom' => 'Já chegou ao fundo da lista', - 'moved_order_up' => 'Configuração :name movida para cima', - 'moved_order_down' => 'Configuração :name movida para baixo', + 'already_at_top' => 'Já chegou ao topo da lista', + 'already_at_bottom' => 'Já chegou ao fundo da lista', + 'moved_order_up' => 'Configuração :name movida para cima', + 'moved_order_down' => 'Configuração :name movida para baixo', 'successfully_removed' => 'Valor :name removido com sucesso', ], 'media' => [ - 'add_new_folder' => 'Adicionar Pasta', - 'audio_support' => 'O seu navegador não suporta o elemento de áudio.', - 'create_new_folder' => 'Criar Pasta', + 'add_new_folder' => 'Adicionar Pasta', + 'audio_support' => 'O seu navegador não suporta o elemento de áudio.', + 'create_new_folder' => 'Criar Pasta', 'delete_folder_question' => 'Ao remover uma pasta irá também remover todos os ficheiros e pastas contidos nela', - 'destination_folder' => 'Destino da Pasta', - 'drag_drop_info' => 'Arraste e solte ficheiros ou clique abaixo para carregar', - 'error_already_exists' => 'Oops, já existe um ficheiro / pasta com esse nome nessa pasta.', - 'error_creating_dir' => 'Oops, ocorreu algo inesperado a criar a pasta, por favor verifique as suas permissões', - 'error_deleting_file' => 'Oops, ocorreu algo inesperado removendo este ficheiro, por favor verifique as suas permissões', - 'error_deleting_folder' => 'Oops, ocorreu algo inesperado removendo esta pasta, por favor verifique as suas permissões', - 'error_may_exist' => 'Talvez um Ficheiro ou Pasta exista com esse nome. Por favor tente com outro nome, ou apague o ficheiro correspondente.', - 'error_moving' => 'Oops, ocorreu um problema ao mover esse ficheiro / pasta, verifique as suas permissões.', - 'error_uploading' => 'Falha ao Copiar: Ocorreu um erro desconhecido!', - 'folder_exists_already' => 'Oops, essa pasta já existe, por favor remova essa pasta se desejar criar uma nova', - 'image_does_not_exist' => 'A imagem não existe', - 'image_removed' => 'Imagem removida', - 'library' => 'Biblioteca de Media', - 'loading' => 'A CARREGAR OS SEUS FICHEIROS DE MÍDIA', - 'move_file_folder' => 'Mover Ficheiro/pasta', - 'new_file_folder' => 'Novo Nome do Ficheiro/Pasta', - 'new_folder_name' => 'Novo Nome da Pasta', - 'no_files_here' => 'Não há ficheiros aqui.', - 'no_files_in_folder' => 'Nenhum ficheiro nesta pasta.', - 'nothing_selected' => 'Nenhum ficheiro ou pasta selecionada', - 'rename_file_folder' => 'Renomear Ficheiro/Pasta', - 'success_uploaded_file' => 'Ficheiro carregado com sucesso!', - 'success_uploading' => 'Imagem carregada com sucesso!', - 'uploading_wrong_type' => 'Falha de envio: Formato do ficheiro não suportado ou é muito grande para ser carregado!', - 'video_support' => 'O seu navegador não suporta a tag de vídeo.', + 'destination_folder' => 'Destino da Pasta', + 'drag_drop_info' => 'Arraste e solte ficheiros ou clique abaixo para carregar', + 'error_already_exists' => 'Oops, já existe um ficheiro / pasta com esse nome nessa pasta.', + 'error_creating_dir' => 'Oops, ocorreu algo inesperado a criar a pasta, por favor verifique as suas permissões', + 'error_deleting_file' => 'Oops, ocorreu algo inesperado removendo este ficheiro, por favor verifique as suas permissões', + 'error_deleting_folder' => 'Oops, ocorreu algo inesperado removendo esta pasta, por favor verifique as suas permissões', + 'error_may_exist' => 'Talvez um Ficheiro ou Pasta exista com esse nome. Por favor tente com outro nome, ou apague o ficheiro correspondente.', + 'error_moving' => 'Oops, ocorreu um problema ao mover esse ficheiro / pasta, verifique as suas permissões.', + 'error_uploading' => 'Falha ao Copiar: Ocorreu um erro desconhecido!', + 'folder_exists_already' => 'Oops, essa pasta já existe, por favor remova essa pasta se desejar criar uma nova', + 'image_does_not_exist' => 'A imagem não existe', + 'image_removed' => 'Imagem removida', + 'library' => 'Biblioteca de Media', + 'loading' => 'A CARREGAR OS SEUS FICHEIROS DE MÍDIA', + 'move_file_folder' => 'Mover Ficheiro/pasta', + 'new_file_folder' => 'Novo Nome do Ficheiro/Pasta', + 'new_folder_name' => 'Novo Nome da Pasta', + 'no_files_here' => 'Não há ficheiros aqui.', + 'no_files_in_folder' => 'Nenhum ficheiro nesta pasta.', + 'nothing_selected' => 'Nenhum ficheiro ou pasta selecionada', + 'rename_file_folder' => 'Renomear Ficheiro/Pasta', + 'success_uploaded_file' => 'Ficheiro carregado com sucesso!', + 'success_uploading' => 'Imagem carregada com sucesso!', + 'uploading_wrong_type' => 'Falha de envio: Formato do ficheiro não suportado ou é muito grande para ser carregado!', + 'video_support' => 'O seu navegador não suporta a tag de vídeo.', ], 'menu_builder' => [ - 'color' => 'Cor em RGB ou hex (opcional)', - 'color_ph' => 'Cor (ex. #ffffff ou rgb(255, 255, 255)', - 'create_new_item' => 'Criar um novo item de menu', - 'delete_item_confirm' => 'Sim, Remover este item de menu', + 'color' => 'Cor em RGB ou hex (opcional)', + 'color_ph' => 'Cor (ex. #ffffff ou rgb(255, 255, 255)', + 'create_new_item' => 'Criar um novo item de menu', + 'delete_item_confirm' => 'Sim, Remover este item de menu', 'delete_item_question' => 'Tem certeza de que deseja remover este item de menu?', - 'drag_drop_info' => 'Arraste e solte os itens do menu para os reorganizar.', - 'dynamic_route' => 'Rota Dinâmica', - 'edit_item' => 'Editar item de menu', - 'icon_class' => 'Classe do Ícone da Fonte para o item de menu (Use ', - 'icon_class2' => 'Classe da Fonte Voyager)', - 'icon_class_ph' => 'Classe do Ícone (opcional)', - 'item_route' => 'Rota do item de menu', - 'item_title' => 'Título do item de menu', - 'link_type' => 'Tipo de link', - 'new_menu_item' => 'Novo Item de Menu', - 'open_in' => 'Abrir em', - 'open_new' => 'Nova Guia/Janela', - 'open_same' => 'Mesma Guia/Janela', - 'route_parameter' => 'Parâmetros de Rotas (se aplicado)', - 'static_url' => 'URL Estático', + 'drag_drop_info' => 'Arraste e solte os itens do menu para os reorganizar.', + 'dynamic_route' => 'Rota Dinâmica', + 'edit_item' => 'Editar item de menu', + 'icon_class' => 'Classe do Ícone da Fonte para o item de menu (Use ', + 'icon_class2' => 'Classe da Fonte Voyager)', + 'icon_class_ph' => 'Classe do Ícone (opcional)', + 'item_route' => 'Rota do item de menu', + 'item_title' => 'Título do item de menu', + 'link_type' => 'Tipo de link', + 'new_menu_item' => 'Novo Item de Menu', + 'open_in' => 'Abrir em', + 'open_new' => 'Nova Guia/Janela', + 'open_same' => 'Mesma Guia/Janela', + 'route_parameter' => 'Parâmetros de Rotas (se aplicado)', + 'static_url' => 'URL Estático', 'successfully_created' => 'Novo item de menu criado com sucesso.', 'successfully_deleted' => 'Item de menu removido com sucesso', 'successfully_updated' => 'Item de menu atualizado com sucesso.', - 'updated_order' => 'Ordem de menu atualizada com sucesso.', - 'url' => 'URL do item de menu', - 'usage_hint' => 'Pode apresentar um menu em qualquer lugar no seu site, executando| Pode apresentar este menu em qualquer lugar no seu site, executando', + 'updated_order' => 'Ordem de menu atualizada com sucesso.', + 'url' => 'URL do item de menu', + 'usage_hint' => 'Pode apresentar um menu em qualquer lugar no seu site, executando| Pode apresentar este menu em qualquer lugar no seu site, executando', ], 'post' => [ - 'category' => 'Categoria da Publicação', - 'content' => 'Conteúdo da Publicação', - 'details' => 'Detalhes da Publicação', - 'excerpt' => 'Excerto Pequena descrição desta publicação', - 'image' => 'Publicar imagem', + 'category' => 'Categoria da Publicação', + 'content' => 'Conteúdo da Publicação', + 'details' => 'Detalhes da Publicação', + 'excerpt' => 'Excerto Pequena descrição desta publicação', + 'image' => 'Publicar imagem', 'meta_description' => 'Descrição de Meta', - 'meta_keywords' => 'palavras-chave de Meta', - 'new' => 'Criar nova publicação', - 'seo_content' => 'Conteúdo do SEO', - 'seo_title' => 'Título SEO', - 'slug' => 'URL slug', - 'status' => 'Status da Publicação', - 'status_draft' => 'rascunho', - 'status_pending' => 'pendente', + 'meta_keywords' => 'palavras-chave de Meta', + 'new' => 'Criar nova publicação', + 'seo_content' => 'Conteúdo do SEO', + 'seo_title' => 'Título SEO', + 'slug' => 'URL slug', + 'status' => 'Status da Publicação', + 'status_draft' => 'rascunho', + 'status_pending' => 'pendente', 'status_published' => 'Publicados', - 'title' => 'Título do cargo', - 'title_sub' => 'O título da sua Publicação', - 'update' => 'Alterar Publicação', + 'title' => 'Título do cargo', + 'title_sub' => 'O título da sua Publicação', + 'update' => 'Alterar Publicação', ], 'database' => [ - 'add_bread' => 'Adicionar BREAD a esta tabela', - 'add_new_column' => 'Adicionar Novo Campo', - 'add_softdeletes' => 'Adicionar Soft Deletes', - 'add_timestamps' => 'Adicionar Timestamps', - 'already_exists' => 'já existe', - 'already_exists_table' => 'A Tabela :table já existe', - 'bread_crud_actions' => 'Ações BREAD/CRUD', - 'bread_info' => 'Informação do BREAD', - 'column' => 'Campo', - 'composite_warning' => 'Atenção: este campo faz parte dos índices compostos', - 'controller_name' => 'Nome do Controller', - 'controller_name_hint' => 'ex. PageController, se não preencher irá usar o BREAD Controller', - 'create_bread_for_table' => 'Criar BREAD para a tabela :table', - 'create_migration' => 'Criar Migration para esta tabela?', - 'create_model_table' => 'Criar Model para esta tabela?', - 'create_new_table' => 'Criar Tabela', - 'create_your_new_table' => 'Criar a Nova Tabela', - 'default' => 'Pré-definido', - 'delete_bread' => 'Remover BREAD', + 'add_bread' => 'Adicionar BREAD a esta tabela', + 'add_new_column' => 'Adicionar Novo Campo', + 'add_softdeletes' => 'Adicionar Soft Deletes', + 'add_timestamps' => 'Adicionar Timestamps', + 'already_exists' => 'já existe', + 'already_exists_table' => 'A Tabela :table já existe', + 'bread_crud_actions' => 'Ações BREAD/CRUD', + 'bread_info' => 'Informação do BREAD', + 'column' => 'Campo', + 'composite_warning' => 'Atenção: este campo faz parte dos índices compostos', + 'controller_name' => 'Nome do Controller', + 'controller_name_hint' => 'ex. PageController, se não preencher irá usar o BREAD Controller', + 'create_bread_for_table' => 'Criar BREAD para a tabela :table', + 'create_migration' => 'Criar Migration para esta tabela?', + 'create_model_table' => 'Criar Model para esta tabela?', + 'create_new_table' => 'Criar Tabela', + 'create_your_new_table' => 'Criar a Nova Tabela', + 'default' => 'Pré-definido', + 'delete_bread' => 'Remover BREAD', 'delete_bread_before_table' => 'Por favor, remova o BREAD desta tabela antes de remover a tabela.', - 'delete_table_bread_conf' => 'Sim, remover este BREAD', - 'delete_table_bread_quest' => 'Tem a certeza que deseja remover o BREAD para a tabela :table?', - 'delete_table_confirm' => 'Sim, remover esta tabela', - 'delete_table_question' => 'Tem a certeza que deseja remover a tabela :table?', - 'description' => 'Descrição', - 'display_name' => 'Nome a Apresentar', - 'display_name_plural' => 'Nome a Apresentar (Plural)', - 'display_name_singular' => 'Nome a Apresentar (Singular)', - 'edit_bread' => 'Alterar BREAD', - 'edit_bread_for_table' => 'Alterar BREAD da tabela :table', - 'edit_rows' => 'Alterar as linhas para a tabela :table abaixo', - 'edit_table' => 'Alterar a tabela :table abaixo', - 'edit_table_not_exist' => 'A tabela que pretende remover não existe', - 'error_creating_bread' => 'Oops, ocorreu algo inesperado ao criar este BREAD', - 'error_removing_bread' => 'Oops, ocorreu algo inesperado ao Remover este BREAD', - 'error_updating_bread' => 'Oops, ocorreu algo inesperado ao alterar este BREAD', - 'extra' => 'Extra', - 'field' => 'Campo', - 'field_safe_failed' => 'Erro ao gravar o campo :field, voltando atrás!', - 'generate_permissions' => 'Gerar Permissões', - 'icon_class' => 'Icon para usar nesta Tabela', - 'icon_hint' => 'Icon (opcional) Usar a', - 'icon_hint2' => 'Voyager Font Class', - 'index' => 'INDEX', - 'input_type' => 'Tipo de Input', - 'key' => 'Key', - 'model_class' => 'Nome da Classe do Model', - 'model_name' => 'Nome do Model', - 'model_name_ph' => 'ex. \App\Models\User, se vazio irá tentar usar o nome da tabela', - 'name_warning' => 'Por favor adicione o nome da coluna para criar o index', - 'no_composites_warning' => 'Esta tabela tem composite indexes. Nota, eles não são suportados de momento. Tenha atenção ao tentar adicionar/remover indexes.', - 'null' => 'Null', - 'optional_details' => 'Opções Adicionais', - 'primary' => 'PRIMARY', - 'server_pagination' => 'Paginação no Servidor', - 'success_create_table' => 'Tabela :table criada com sucesso', - 'success_created_bread' => 'BREAD criado com sucesso', - 'success_delete_table' => 'Tabela :table removida com sucesso', - 'success_remove_bread' => 'BREAD :datatype removido com sucesso', - 'success_update_bread' => 'BREAD :datatype alterado com sucesso', - 'success_update_table' => 'Tabela :table alterada com sucesso', - 'table_actions' => 'Ações da Tabela', - 'table_columns' => 'Campos da Tabela', - 'table_has_index' => 'A tabela já tem um primary index.', - 'table_name' => 'Nome da Tabela', - 'table_no_columns' => 'A tabela não tem campos...', - 'type' => 'Tipo', - 'type_not_supported' => 'Este tipo de campo não é suportado', - 'unique' => 'UNIQUE', - 'unknown_type' => 'Tipo Desconhecido', - 'update_table' => 'Alterar Tabela', - 'url_slug' => 'URL Slug (único)', - 'url_slug_ph' => 'URL slug (ex. posts)', - 'visibility' => 'Visibilidade', + 'delete_table_bread_conf' => 'Sim, remover este BREAD', + 'delete_table_bread_quest' => 'Tem a certeza que deseja remover o BREAD para a tabela :table?', + 'delete_table_confirm' => 'Sim, remover esta tabela', + 'delete_table_question' => 'Tem a certeza que deseja remover a tabela :table?', + 'description' => 'Descrição', + 'display_name' => 'Nome a Apresentar', + 'display_name_plural' => 'Nome a Apresentar (Plural)', + 'display_name_singular' => 'Nome a Apresentar (Singular)', + 'edit_bread' => 'Alterar BREAD', + 'edit_bread_for_table' => 'Alterar BREAD da tabela :table', + 'edit_rows' => 'Alterar as linhas para a tabela :table abaixo', + 'edit_table' => 'Alterar a tabela :table abaixo', + 'edit_table_not_exist' => 'A tabela que pretende remover não existe', + 'error_creating_bread' => 'Oops, ocorreu algo inesperado ao criar este BREAD', + 'error_removing_bread' => 'Oops, ocorreu algo inesperado ao Remover este BREAD', + 'error_updating_bread' => 'Oops, ocorreu algo inesperado ao alterar este BREAD', + 'extra' => 'Extra', + 'field' => 'Campo', + 'field_safe_failed' => 'Erro ao gravar o campo :field, voltando atrás!', + 'generate_permissions' => 'Gerar Permissões', + 'icon_class' => 'Icon para usar nesta Tabela', + 'icon_hint' => 'Icon (opcional) Usar a', + 'icon_hint2' => 'Voyager Font Class', + 'index' => 'INDEX', + 'input_type' => 'Tipo de Input', + 'key' => 'Key', + 'model_class' => 'Nome da Classe do Model', + 'model_name' => 'Nome do Model', + 'model_name_ph' => 'ex. \App\Models\User, se vazio irá tentar usar o nome da tabela', + 'name_warning' => 'Por favor adicione o nome da coluna para criar o index', + 'no_composites_warning' => 'Esta tabela tem composite indexes. Nota, eles não são suportados de momento. Tenha atenção ao tentar adicionar/remover indexes.', + 'null' => 'Null', + 'optional_details' => 'Opções Adicionais', + 'primary' => 'PRIMARY', + 'server_pagination' => 'Paginação no Servidor', + 'success_create_table' => 'Tabela :table criada com sucesso', + 'success_created_bread' => 'BREAD criado com sucesso', + 'success_delete_table' => 'Tabela :table removida com sucesso', + 'success_remove_bread' => 'BREAD :datatype removido com sucesso', + 'success_update_bread' => 'BREAD :datatype alterado com sucesso', + 'success_update_table' => 'Tabela :table alterada com sucesso', + 'table_actions' => 'Ações da Tabela', + 'table_columns' => 'Campos da Tabela', + 'table_has_index' => 'A tabela já tem um primary index.', + 'table_name' => 'Nome da Tabela', + 'table_no_columns' => 'A tabela não tem campos...', + 'type' => 'Tipo', + 'type_not_supported' => 'Este tipo de campo não é suportado', + 'unique' => 'UNIQUE', + 'unknown_type' => 'Tipo Desconhecido', + 'update_table' => 'Alterar Tabela', + 'url_slug' => 'URL Slug (único)', + 'url_slug_ph' => 'URL slug (ex. posts)', + 'visibility' => 'Visibilidade', ], 'dimmer' => [ - 'page' => 'Página|Páginas', + 'page' => 'Página|Páginas', 'page_link_text' => 'Ver todas as páginas', - 'page_text' => 'Tem :count :string na sua base de dados. Clique no botão abaixo para ver todas as páginas.', - 'post' => 'Publicação|Publicações', + 'page_text' => 'Tem :count :string na sua base de dados. Clique no botão abaixo para ver todas as páginas.', + 'post' => 'Publicação|Publicações', 'post_link_text' => 'Ver todas as publicações', - 'post_text' => 'Tem :count :string na sua base de dados. Clique no botão abaixo para ver todas as publicações.', - 'user' => 'Utilizador|Utilizadores', + 'post_text' => 'Tem :count :string na sua base de dados. Clique no botão abaixo para ver todas as publicações.', + 'user' => 'Utilizador|Utilizadores', 'user_link_text' => 'Ver todos os utilizadores', - 'user_text' => 'Tem :count :string na sua base de dados. Clique no botão abaixo para ver todos os utilizadores.', + 'user_text' => 'Tem :count :string na sua base de dados. Clique no botão abaixo para ver todos os utilizadores.', ], 'form' => [ - 'field_password_keep' => 'Deixar vazio para manter o atual', + 'field_password_keep' => 'Deixar vazio para manter o atual', 'field_select_dd_relationship' => 'Make sure to setup the appropriate relationship in the :method method of the :class class.', - 'type_checkbox' => 'Check Box', - 'type_codeeditor' => 'Editor de Código', - 'type_file' => 'Ficheiro', - 'type_image' => 'Imagem', - 'type_radiobutton' => 'Radio Button', - 'type_richtextbox' => 'Rich Textbox', - 'type_selectdropdown' => 'Select Dropdown', - 'type_textarea' => 'Text Area', - 'type_textbox' => 'Text Box', + 'type_checkbox' => 'Check Box', + 'type_codeeditor' => 'Editor de Código', + 'type_file' => 'Ficheiro', + 'type_image' => 'Imagem', + 'type_radiobutton' => 'Radio Button', + 'type_richtextbox' => 'Rich Textbox', + 'type_selectdropdown' => 'Select Dropdown', + 'type_textarea' => 'Text Area', + 'type_textbox' => 'Text Box', ], 'datatable' => [ - 'sEmptyTable' => 'Não há registos para apresentar', - 'sInfo' => 'Mostrando de _START_ até _END_ de _TOTAL_ registos', - 'sInfoEmpty' => 'Mostrando de 0 até 0 de 0 registos', - 'sInfoFiltered' => '(filtrado de _MAX_ registos no total)', - 'sInfoPostFix' => '', - 'sInfoThousands' => ',', - 'sLengthMenu' => 'Mostrar _MENU_ registos', + 'sEmptyTable' => 'Não há registos para apresentar', + 'sInfo' => 'Mostrando de _START_ até _END_ de _TOTAL_ registos', + 'sInfoEmpty' => 'Mostrando de 0 até 0 de 0 registos', + 'sInfoFiltered' => '(filtrado de _MAX_ registos no total)', + 'sInfoPostFix' => '', + 'sInfoThousands' => ',', + 'sLengthMenu' => 'Mostrar _MENU_ registos', 'sLoadingRecords' => 'A Carregar...', - 'sProcessing' => 'A processar...', - 'sSearch' => 'Procurar:', - 'sZeroRecords' => 'Não foram encontrados resultados', - 'oPaginate' => [ - 'sFirst' => 'Primeiro', + 'sProcessing' => 'A processar...', + 'sSearch' => 'Procurar:', + 'sZeroRecords' => 'Não foram encontrados resultados', + 'oPaginate' => [ + 'sFirst' => 'Primeiro', 'sPrevious' => 'Anterior', - 'sNext' => 'Seguinte', - 'sLast' => 'Último', + 'sNext' => 'Seguinte', + 'sLast' => 'Último', ], 'oAria' => [ - 'sSortAscending' => ': ativar para ordenar de forma crescente', + 'sSortAscending' => ': ativar para ordenar de forma crescente', 'sSortDescending' => ': ativar para ordenar de forma decrescente', ], ], 'theme' => [ - 'footer_copyright' => 'Produzido com por', + 'footer_copyright' => 'Produzido com por', 'footer_copyright2' => 'Produzido com rum e mais rum', ], 'json' => [ - 'invalid' => 'JSON Inválido', - 'invalid_message' => 'Submeteu um JSON inválido.', - 'valid' => 'JSON Válido', + 'invalid' => 'JSON Inválido', + 'invalid_message' => 'Submeteu um JSON inválido.', + 'valid' => 'JSON Válido', 'validation_errors' => 'Erros de validação', ], 'analytics' => [ - 'by_pageview' => 'Por pageview', - 'by_sessions' => 'Por sessions', - 'by_users' => 'Por users', - 'no_client_id' => 'Para aceder ao analytics precisa adicionar nas Configurações do Voyager o key google_analytics_client_id com o código google analytics client id. Obtenha o seu key através do Google developer console:', - 'set_view' => 'Selecionar Vista', - 'this_vs_last_week' => 'Esta Semana vs Semana Passada', - 'this_vs_last_year' => 'Este Ano vs Ano Passado', - 'top_browsers' => 'Top Browsers', - 'top_countries' => 'Top Países', + 'by_pageview' => 'Por pageview', + 'by_sessions' => 'Por sessions', + 'by_users' => 'Por users', + 'no_client_id' => 'Para aceder ao analytics precisa adicionar nas Configurações do Voyager o key google_analytics_client_id com o código google analytics client id. Obtenha o seu key através do Google developer console:', + 'set_view' => 'Selecionar Vista', + 'this_vs_last_week' => 'Esta Semana vs Semana Passada', + 'this_vs_last_year' => 'Este Ano vs Ano Passado', + 'top_browsers' => 'Top Browsers', + 'top_countries' => 'Top Países', 'various_visualizations' => 'Visualizações várias', ], 'error' => [ - 'symlink_created_text' => 'We just created the missing symlink for you.', - 'symlink_created_title' => 'Missing storage symlink created', - 'symlink_failed_text' => 'We failed to generate the missing symlink for your application. It seems like your hosting provider does not support it.', - 'symlink_failed_title' => 'Could not create missing storage symlink', + 'symlink_created_text' => 'We just created the missing symlink for you.', + 'symlink_created_title' => 'Missing storage symlink created', + 'symlink_failed_text' => 'We failed to generate the missing symlink for your application. It seems like your hosting provider does not support it.', + 'symlink_failed_title' => 'Could not create missing storage symlink', 'symlink_missing_button' => 'Fix it', - 'symlink_missing_text' => 'We could not find a storage symlink. This could cause problems with loading media files from the browser.', - 'symlink_missing_title' => 'Missing storage symlink', + 'symlink_missing_text' => 'We could not find a storage symlink. This could cause problems with loading media files from the browser.', + 'symlink_missing_title' => 'Missing storage symlink', ], ]; diff --git a/lang/pt_br/voyager.php b/lang/pt_br/voyager.php index af3105631..07ee1134b 100644 --- a/lang/pt_br/voyager.php +++ b/lang/pt_br/voyager.php @@ -9,389 +9,389 @@ ], 'generic' => [ - 'action' => 'Ação', - 'actions' => 'Ações', - 'add' => 'Adicionar', - 'add_folder' => 'Adicionar Pasta', - 'add_new' => 'Adicionar', - 'all_done' => 'Concluído', - 'are_you_sure' => 'Tem certeza', - 'are_you_sure_delete' => 'Tem certeza de que deseja remover', - 'auto_increment' => 'Incremento automático', - 'browse' => 'Navegar', - 'builder' => 'Construtor', - 'bulk_delete' => 'Exclusão em massa', - 'bulk_delete_confirm' => 'Sim, exclua estes', - 'bulk_delete_nothing' => 'Você não selecionou nada para excluir', - 'cancel' => 'Cancelar', - 'choose_type' => 'Escolha o tipo', - 'click_here' => 'Clique aqui', - 'close' => 'Fechar', - 'compass' => 'Bússola', - 'created_at' => 'Criado em', - 'custom' => 'Personalizado', - 'dashboard' => 'Painel de Controle', - 'database' => 'Banco de dados', - 'default' => 'Padrão', - 'delete' => 'Remover', - 'delete_confirm' => 'Sim, Remover!', - 'delete_question' => 'Tem certeza de que deseja remover isto', - 'delete_this_confirm' => 'Sim, exclua isto', - 'deselect_all' => 'Desmarcar todos', - 'download' => 'Baixar', - 'edit' => 'Editar', - 'email' => 'E-mail', - 'error_deleting' => 'Oops, ocorreu um problema ao remover', - 'exception' => 'Exceção', - 'featured' => 'Destacado', - 'field_does_not_exist' => 'O campo não existe', - 'how_to_use' => 'Como usar', - 'index' => 'Índice', - 'internal_error' => 'Erro interno', - 'items' => 'item(s)', - 'keep_sidebar_open' => 'Arrrgh! Soltem as âncoras! (e mantenha a barra lateral aberta)', - 'key' => 'Chave', - 'last_modified' => 'Última modificação', - 'length' => 'Comprimento', - 'login' => 'Login', - 'media' => 'Mídia', - 'menu_builder' => 'Construtor de Menu', - 'move' => 'Mover', - 'name' => 'Nome', - 'new' => 'Novo', - 'no' => 'Não', - 'no_thanks' => 'Não Obrigado', - 'not_null' => 'Não Nulo', - 'options' => 'Opções', - 'password' => 'Senha', - 'permissions' => 'Permissões', - 'profile' => 'Perfil', - 'public_url' => 'URL público', - 'read' => 'Ler', - 'rename' => 'Renomear', - 'required' => 'Requerido', - 'return_to_list' => 'Voltar à lista', - 'route' => 'Rota', - 'save' => 'Guardar', - 'search' => 'Procurar', - 'select_all' => 'Selecione Todos', - 'select_group' => 'Selecione um grupo existente ou adicione um novo', - 'settings' => 'Configurações', - 'showing_entries' => 'Mostrando :from a :to de :all entrada|Mostrando :from a :to de :all entradas', - 'submit' => 'Submeter', + 'action' => 'Ação', + 'actions' => 'Ações', + 'add' => 'Adicionar', + 'add_folder' => 'Adicionar Pasta', + 'add_new' => 'Adicionar', + 'all_done' => 'Concluído', + 'are_you_sure' => 'Tem certeza', + 'are_you_sure_delete' => 'Tem certeza de que deseja remover', + 'auto_increment' => 'Incremento automático', + 'browse' => 'Navegar', + 'builder' => 'Construtor', + 'bulk_delete' => 'Exclusão em massa', + 'bulk_delete_confirm' => 'Sim, exclua estes', + 'bulk_delete_nothing' => 'Você não selecionou nada para excluir', + 'cancel' => 'Cancelar', + 'choose_type' => 'Escolha o tipo', + 'click_here' => 'Clique aqui', + 'close' => 'Fechar', + 'compass' => 'Bússola', + 'created_at' => 'Criado em', + 'custom' => 'Personalizado', + 'dashboard' => 'Painel de Controle', + 'database' => 'Banco de dados', + 'default' => 'Padrão', + 'delete' => 'Remover', + 'delete_confirm' => 'Sim, Remover!', + 'delete_question' => 'Tem certeza de que deseja remover isto', + 'delete_this_confirm' => 'Sim, exclua isto', + 'deselect_all' => 'Desmarcar todos', + 'download' => 'Baixar', + 'edit' => 'Editar', + 'email' => 'E-mail', + 'error_deleting' => 'Oops, ocorreu um problema ao remover', + 'exception' => 'Exceção', + 'featured' => 'Destacado', + 'field_does_not_exist' => 'O campo não existe', + 'how_to_use' => 'Como usar', + 'index' => 'Índice', + 'internal_error' => 'Erro interno', + 'items' => 'item(s)', + 'keep_sidebar_open' => 'Arrrgh! Soltem as âncoras! (e mantenha a barra lateral aberta)', + 'key' => 'Chave', + 'last_modified' => 'Última modificação', + 'length' => 'Comprimento', + 'login' => 'Login', + 'media' => 'Mídia', + 'menu_builder' => 'Construtor de Menu', + 'move' => 'Mover', + 'name' => 'Nome', + 'new' => 'Novo', + 'no' => 'Não', + 'no_thanks' => 'Não Obrigado', + 'not_null' => 'Não Nulo', + 'options' => 'Opções', + 'password' => 'Senha', + 'permissions' => 'Permissões', + 'profile' => 'Perfil', + 'public_url' => 'URL público', + 'read' => 'Ler', + 'rename' => 'Renomear', + 'required' => 'Requerido', + 'return_to_list' => 'Voltar à lista', + 'route' => 'Rota', + 'save' => 'Guardar', + 'search' => 'Procurar', + 'select_all' => 'Selecione Todos', + 'select_group' => 'Selecione um grupo existente ou adicione um novo', + 'settings' => 'Configurações', + 'showing_entries' => 'Mostrando :from a :to de :all entrada|Mostrando :from a :to de :all entradas', + 'submit' => 'Submeter', 'successfully_added_new' => 'Adicionado com sucesso', - 'successfully_deleted' => 'Removido com sucesso', - 'successfully_updated' => 'Atualizado com sucesso', - 'timestamp' => 'Timestamp', - 'title' => 'Título', - 'type' => 'Tipo', - 'unsigned' => 'Não assinado', - 'unstick_sidebar' => 'Descolar a barra lateral', - 'update' => 'Atualizar', - 'update_failed' => 'Atualização falhou', - 'upload' => 'Upload', - 'url' => 'URL', - 'view' => 'Ver', - 'viewing' => 'Visualizando', - 'yes' => 'Sim', - 'yes_please' => 'Sim, por favor', + 'successfully_deleted' => 'Removido com sucesso', + 'successfully_updated' => 'Atualizado com sucesso', + 'timestamp' => 'Timestamp', + 'title' => 'Título', + 'type' => 'Tipo', + 'unsigned' => 'Não assinado', + 'unstick_sidebar' => 'Descolar a barra lateral', + 'update' => 'Atualizar', + 'update_failed' => 'Atualização falhou', + 'upload' => 'Upload', + 'url' => 'URL', + 'view' => 'Ver', + 'viewing' => 'Visualizando', + 'yes' => 'Sim', + 'yes_please' => 'Sim, por favor', ], 'login' => [ - 'loggingin' => 'Iniciando sessão', + 'loggingin' => 'Iniciando sessão', 'signin_below' => 'Iniciar sessão abaixo:', - 'welcome' => 'Bem-vindo ao Voyager. O painel de administração que faltava ao Laravel', + 'welcome' => 'Bem-vindo ao Voyager. O painel de administração que faltava ao Laravel', ], 'profile' => [ - 'avatar' => 'Avatar', - 'edit' => 'Editar o meu perfil', - 'edit_user' => 'Editar Utilizador', - 'password' => 'Senha', + 'avatar' => 'Avatar', + 'edit' => 'Editar o meu perfil', + 'edit_user' => 'Editar Utilizador', + 'password' => 'Senha', 'password_hint' => 'Deixar vazio para manter o valor atual', - 'role' => 'Função', - 'user_role' => 'Função do Utilizador', + 'role' => 'Função', + 'user_role' => 'Função do Utilizador', ], 'settings' => [ - 'usage_help' => 'Pode obter o valor de cada configuração em qualquer lugar em seu site, executando', - 'save' => 'Guardar configurações', - 'new' => 'Nova configuração', - 'help_name' => 'Nome da configuração ex: Título do Administrador', - 'help_key' => 'Chave da configuração ex: title_administrador', - 'help_option' => '(opcional, aplica-se apenas a certos tipos, como dropdown ou botão de rádio)', - 'add_new' => 'Adicionar configuração', - 'delete_question' => 'Tem certeza de que deseja remover a Configuração :setting?', - 'delete_confirm' => 'Sim, remover esta configuração', + 'usage_help' => 'Pode obter o valor de cada configuração em qualquer lugar em seu site, executando', + 'save' => 'Guardar configurações', + 'new' => 'Nova configuração', + 'help_name' => 'Nome da configuração ex: Título do Administrador', + 'help_key' => 'Chave da configuração ex: title_administrador', + 'help_option' => '(opcional, aplica-se apenas a certos tipos, como dropdown ou botão de rádio)', + 'add_new' => 'Adicionar configuração', + 'delete_question' => 'Tem certeza de que deseja remover a Configuração :setting?', + 'delete_confirm' => 'Sim, remover esta configuração', 'successfully_created' => 'Configurações criadas com sucesso', - 'successfully_saved' => 'Configurações guardadas com sucesso', + 'successfully_saved' => 'Configurações guardadas com sucesso', 'successfully_deleted' => 'Configuração removida com sucesso', - 'already_at_top' => 'Já chegou ao topo da lista', - 'already_at_bottom' => 'Já chegou ao fundo da lista', - 'key_already_exists' => 'A chave :key já existe', - 'moved_order_up' => 'Configuração :name movida para cima', - 'moved_order_down' => 'Configuração :name movida para baixo', + 'already_at_top' => 'Já chegou ao topo da lista', + 'already_at_bottom' => 'Já chegou ao fundo da lista', + 'key_already_exists' => 'A chave :key já existe', + 'moved_order_up' => 'Configuração :name movida para cima', + 'moved_order_down' => 'Configuração :name movida para baixo', 'successfully_removed' => 'Valor :name removido com sucesso', - 'group_general' => 'Geral', - 'group_admin' => 'Admin', - 'group_site' => 'Site', - 'group' => 'Grupo', - 'help_group' => 'O grupo desta configuração é atribuído a', + 'group_general' => 'Geral', + 'group_admin' => 'Admin', + 'group_site' => 'Site', + 'group' => 'Grupo', + 'help_group' => 'O grupo desta configuração é atribuído a', ], 'media' => [ - 'add_new_folder' => 'Adicionar Pasta', - 'audio_support' => 'O seu navegador não suporta o elemento de áudio.', - 'create_new_folder' => 'Criar Pasta', + 'add_new_folder' => 'Adicionar Pasta', + 'audio_support' => 'O seu navegador não suporta o elemento de áudio.', + 'create_new_folder' => 'Criar Pasta', 'delete_folder_question' => 'Ao remover uma pasta irá também remover todos os arquivos e pastas contidos nela', - 'destination_folder' => 'Destino da Pasta', - 'drag_drop_info' => 'Arraste e solte arquivo ou clique abaixo para carregar', - 'error_already_exists' => 'Oops, já existe um arquivo / pasta com esse nome nessa pasta.', - 'error_creating_dir' => 'Oops, ocorreu algo inesperado a criar a pasta, por favor verifique as suas permissões', - 'error_deleting_file' => 'Oops, ocorreu algo inesperado removendo este arquivo, por favor verifique as suas permissões', - 'error_deleting_folder' => 'Oops, ocorreu algo inesperado removendo esta pasta, por favor verifique as suas permissões', - 'error_may_exist' => 'Talvez um arquivo ou Pasta exista com esse nome. Por favor tente com outro nome, ou apague o arquivo correspondente.', - 'error_moving' => 'Oops, ocorreu um problema ao mover esse arquivo / pasta, verifique as suas permissões.', - 'error_uploading' => 'Falha ao Copiar: Ocorreu um erro desconhecido!', - 'folder_exists_already' => 'Oops, essa pasta já existe, por favor remova essa pasta se desejar criar uma nova', - 'image_does_not_exist' => 'A imagem não existe', - 'image_removed' => 'Imagem removida', - 'library' => 'Biblioteca de Mídia', - 'loading' => 'A CARREGAR OS SEUS ARQUIVOS DE MÍDIA', - 'move_file_folder' => 'Mover Arquivo/pasta', - 'new_file_folder' => 'Novo Nome do Arquivo/Pasta', - 'new_folder_name' => 'Novo Nome da Pasta', - 'no_files_here' => 'Não há arquivos aqui.', - 'no_files_in_folder' => 'Nenhum arquivo nesta pasta.', - 'nothing_selected' => 'Nenhum arquivo ou pasta selecionada', - 'rename_file_folder' => 'Renomear Arquivo/Pasta', - 'success_uploaded_file' => 'Arquivo carregado com sucesso!', - 'success_uploading' => 'Imagem carregada com sucesso!', - 'uploading_wrong_type' => 'Falha de envio: Formato do arquivo não suportado ou é muito grande para ser carregado!', - 'video_support' => 'O seu navegador não suporta a tag de vídeo.', - 'crop' => 'Cortar', - 'crop_and_create' => 'Cortar & Criar', - 'crop_override_confirm' => 'Irá substituir a imagem original, você tem certeza?', - 'crop_image' => 'Cortar Imagem', - 'success_crop_image' => 'Imagem cortada com sucesso', - 'height' => 'Altura: ', - 'width' => 'Largura: ', + 'destination_folder' => 'Destino da Pasta', + 'drag_drop_info' => 'Arraste e solte arquivo ou clique abaixo para carregar', + 'error_already_exists' => 'Oops, já existe um arquivo / pasta com esse nome nessa pasta.', + 'error_creating_dir' => 'Oops, ocorreu algo inesperado a criar a pasta, por favor verifique as suas permissões', + 'error_deleting_file' => 'Oops, ocorreu algo inesperado removendo este arquivo, por favor verifique as suas permissões', + 'error_deleting_folder' => 'Oops, ocorreu algo inesperado removendo esta pasta, por favor verifique as suas permissões', + 'error_may_exist' => 'Talvez um arquivo ou Pasta exista com esse nome. Por favor tente com outro nome, ou apague o arquivo correspondente.', + 'error_moving' => 'Oops, ocorreu um problema ao mover esse arquivo / pasta, verifique as suas permissões.', + 'error_uploading' => 'Falha ao Copiar: Ocorreu um erro desconhecido!', + 'folder_exists_already' => 'Oops, essa pasta já existe, por favor remova essa pasta se desejar criar uma nova', + 'image_does_not_exist' => 'A imagem não existe', + 'image_removed' => 'Imagem removida', + 'library' => 'Biblioteca de Mídia', + 'loading' => 'A CARREGAR OS SEUS ARQUIVOS DE MÍDIA', + 'move_file_folder' => 'Mover Arquivo/pasta', + 'new_file_folder' => 'Novo Nome do Arquivo/Pasta', + 'new_folder_name' => 'Novo Nome da Pasta', + 'no_files_here' => 'Não há arquivos aqui.', + 'no_files_in_folder' => 'Nenhum arquivo nesta pasta.', + 'nothing_selected' => 'Nenhum arquivo ou pasta selecionada', + 'rename_file_folder' => 'Renomear Arquivo/Pasta', + 'success_uploaded_file' => 'Arquivo carregado com sucesso!', + 'success_uploading' => 'Imagem carregada com sucesso!', + 'uploading_wrong_type' => 'Falha de envio: Formato do arquivo não suportado ou é muito grande para ser carregado!', + 'video_support' => 'O seu navegador não suporta a tag de vídeo.', + 'crop' => 'Cortar', + 'crop_and_create' => 'Cortar & Criar', + 'crop_override_confirm' => 'Irá substituir a imagem original, você tem certeza?', + 'crop_image' => 'Cortar Imagem', + 'success_crop_image' => 'Imagem cortada com sucesso', + 'height' => 'Altura: ', + 'width' => 'Largura: ', ], 'menu_builder' => [ - 'color' => 'Cor em RGB ou hex (opcional)', - 'color_ph' => 'Cor (ex. #ffffff ou rgb(255, 255, 255)', - 'create_new_item' => 'Criar um novo item de menu', - 'delete_item_confirm' => 'Sim, Remover este item de menu', + 'color' => 'Cor em RGB ou hex (opcional)', + 'color_ph' => 'Cor (ex. #ffffff ou rgb(255, 255, 255)', + 'create_new_item' => 'Criar um novo item de menu', + 'delete_item_confirm' => 'Sim, Remover este item de menu', 'delete_item_question' => 'Tem certeza de que deseja remover este item de menu?', - 'drag_drop_info' => 'Arraste e solte os itens do menu para os reorganizar.', - 'dynamic_route' => 'Rota Dinâmica', - 'edit_item' => 'Editar item de menu', - 'icon_class' => 'Classe do Ícone da Fonte para o item de menu (Use ', - 'icon_class2' => 'Classe da Fonte Voyager)', - 'icon_class_ph' => 'Classe do Ícone (opcional)', - 'item_route' => 'Rota do item de menu', - 'item_title' => 'Título do item de menu', - 'link_type' => 'Tipo de link', - 'new_menu_item' => 'Novo Item de Menu', - 'open_in' => 'Abrir em', - 'open_new' => 'Nova Guia/Janela', - 'open_same' => 'Mesma Guia/Janela', - 'route_parameter' => 'Parâmetros de Rotas (se aplicado)', - 'static_url' => 'URL Estático', + 'drag_drop_info' => 'Arraste e solte os itens do menu para os reorganizar.', + 'dynamic_route' => 'Rota Dinâmica', + 'edit_item' => 'Editar item de menu', + 'icon_class' => 'Classe do Ícone da Fonte para o item de menu (Use ', + 'icon_class2' => 'Classe da Fonte Voyager)', + 'icon_class_ph' => 'Classe do Ícone (opcional)', + 'item_route' => 'Rota do item de menu', + 'item_title' => 'Título do item de menu', + 'link_type' => 'Tipo de link', + 'new_menu_item' => 'Novo Item de Menu', + 'open_in' => 'Abrir em', + 'open_new' => 'Nova Guia/Janela', + 'open_same' => 'Mesma Guia/Janela', + 'route_parameter' => 'Parâmetros de Rotas (se aplicado)', + 'static_url' => 'URL Estático', 'successfully_created' => 'Novo item de menu criado com sucesso.', 'successfully_deleted' => 'Item de menu removido com sucesso', 'successfully_updated' => 'Item de menu atualizado com sucesso.', - 'updated_order' => 'Ordem de menu atualizada com sucesso.', - 'url' => 'URL do item de menu', - 'usage_hint' => 'Pode apresentar um menu em qualquer lugar no seu site, executando| Pode apresentar este menu em qualquer lugar no seu site, executando', + 'updated_order' => 'Ordem de menu atualizada com sucesso.', + 'url' => 'URL do item de menu', + 'usage_hint' => 'Pode apresentar um menu em qualquer lugar no seu site, executando| Pode apresentar este menu em qualquer lugar no seu site, executando', ], 'post' => [ - 'category' => 'Categoria da Publicação', - 'content' => 'Conteúdo da Publicação', - 'details' => 'Detalhes da Publicação', - 'excerpt' => 'Excerto Pequena descrição desta publicação', - 'image' => 'Publicar imagem', + 'category' => 'Categoria da Publicação', + 'content' => 'Conteúdo da Publicação', + 'details' => 'Detalhes da Publicação', + 'excerpt' => 'Excerto Pequena descrição desta publicação', + 'image' => 'Publicar imagem', 'meta_description' => 'Meta de Descrição', - 'meta_keywords' => 'Meta de palavras-chave', - 'new' => 'Criar nova publicação', - 'seo_content' => 'Conteúdo do SEO', - 'seo_title' => 'Título SEO', - 'slug' => 'URL slug', - 'status' => 'Status da Publicação', - 'status_draft' => 'rascunho', - 'status_pending' => 'pendente', + 'meta_keywords' => 'Meta de palavras-chave', + 'new' => 'Criar nova publicação', + 'seo_content' => 'Conteúdo do SEO', + 'seo_title' => 'Título SEO', + 'slug' => 'URL slug', + 'status' => 'Status da Publicação', + 'status_draft' => 'rascunho', + 'status_pending' => 'pendente', 'status_published' => 'publicados', - 'title' => 'Título da publicação', - 'title_sub' => 'O título da sua publicação', - 'update' => 'Alterar Publicação', + 'title' => 'Título da publicação', + 'title_sub' => 'O título da sua publicação', + 'update' => 'Alterar Publicação', ], 'database' => [ - 'add_bread' => 'Adicionar BREAD à esta tabela', - 'add_new_column' => 'Adicionar Nova Coluna', - 'add_softdeletes' => 'Adicionar Soft Deletes', - 'add_timestamps' => 'Adicionar Timestamps', - 'already_exists' => 'já existe', - 'already_exists_table' => 'A Tabela :table já existe', - 'bread_crud_actions' => 'Ações BREAD/CRUD', - 'bread_info' => 'Informação do BREAD', - 'column' => 'Coluna', - 'composite_warning' => 'Atenção: esta coluna faz parte de um índice composto', - 'controller_name' => 'Nome do Controller', - 'controller_name_hint' => 'ex. PageController, se não preencher irá usar o BREAD Controller', - 'create_bread_for_table' => 'Criar BREAD para a tabela :table', - 'create_migration' => 'Criar migration para esta tabela?', - 'create_model_table' => 'Criar model para esta tabela?', - 'create_new_table' => 'Criar tabela', - 'create_your_new_table' => 'Crie sua nova tabela', - 'default' => 'Pré-definido', - 'delete_bread' => 'Remover BREAD', + 'add_bread' => 'Adicionar BREAD à esta tabela', + 'add_new_column' => 'Adicionar Nova Coluna', + 'add_softdeletes' => 'Adicionar Soft Deletes', + 'add_timestamps' => 'Adicionar Timestamps', + 'already_exists' => 'já existe', + 'already_exists_table' => 'A Tabela :table já existe', + 'bread_crud_actions' => 'Ações BREAD/CRUD', + 'bread_info' => 'Informação do BREAD', + 'column' => 'Coluna', + 'composite_warning' => 'Atenção: esta coluna faz parte de um índice composto', + 'controller_name' => 'Nome do Controller', + 'controller_name_hint' => 'ex. PageController, se não preencher irá usar o BREAD Controller', + 'create_bread_for_table' => 'Criar BREAD para a tabela :table', + 'create_migration' => 'Criar migration para esta tabela?', + 'create_model_table' => 'Criar model para esta tabela?', + 'create_new_table' => 'Criar tabela', + 'create_your_new_table' => 'Crie sua nova tabela', + 'default' => 'Pré-definido', + 'delete_bread' => 'Remover BREAD', 'delete_bread_before_table' => 'Por favor, remova o BREAD desta tabela antes de remover a tabela.', - 'delete_table_bread_conf' => 'Sim, remover este BREAD', - 'delete_table_bread_quest' => 'Tem certeza que deseja remover o BREAD para a tabela :table?', - 'delete_table_confirm' => 'Sim, remover esta tabela', - 'delete_table_question' => 'Tem certeza que deseja remover a tabela :table?', - 'description' => 'Descrição', - 'display_name' => 'Nome a ser Apresentado', - 'display_name_plural' => 'Nome a ser Apresentado (Plural)', - 'display_name_singular' => 'Nome a ser Apresentado (Singular)', - 'edit_bread' => 'Alterar BREAD', - 'edit_bread_for_table' => 'Alterar BREAD da tabela :table', - 'edit_rows' => 'Alterar as linhas para a tabela :table abaixo', - 'edit_table' => 'Alterar a tabela :table abaixo', - 'edit_table_not_exist' => 'A tabela que pretende remover não existe', - 'error_creating_bread' => 'Oops, ocorreu algo inesperado ao criar este BREAD', - 'error_removing_bread' => 'Oops, ocorreu algo inesperado ao remover este BREAD', - 'error_updating_bread' => 'Oops, ocorreu algo inesperado ao alterar este BREAD', - 'extra' => 'Extra', - 'field' => 'Campo', - 'field_safe_failed' => 'Erro ao gravar o campo :field, voltando atrás!', - 'generate_permissions' => 'Gerar Permissões', - 'icon_class' => 'Icon para usar nesta Tabela', - 'icon_hint' => 'Icon (opcional) Usar a', - 'icon_hint2' => 'Voyager Font Class', - 'index' => 'INDEX', - 'input_type' => 'Tipo de Input', - 'key' => 'Key', - 'model_class' => 'Nome da Classe do Model', - 'model_name' => 'Nome do Model', - 'model_name_ph' => 'ex. \App\Models\User, se vazio irá tentar usar o nome da tabela', - 'name_warning' => 'Por favor adicione o nome da coluna para criar o index', - 'no_composites_warning' => 'Esta tabela tem composite indexes. Nota, eles não são suportados de momento. Tenha atenção ao tentar adicionar/remover indexes.', - 'null' => 'Null', - 'optional_details' => 'Opções Adicionais', - 'policy_class' => 'Nome da classe Policy', - 'policy_name' => 'Policy Name', //todo find suitable translation - 'policy_name_ph' => 'ex. \App\Policies\UserPolicy, se deixado vazio, tentará usar o padrão', - 'primary' => 'PRIMARY', - 'server_pagination' => 'Paginação no Servidor', - 'success_create_table' => 'Tabela :table criada com sucesso', - 'success_created_bread' => 'BREAD criado com sucesso', - 'success_delete_table' => 'Tabela :table removida com sucesso', - 'success_remove_bread' => 'BREAD :datatype removido com sucesso', - 'success_update_bread' => 'BREAD :datatype alterado com sucesso', - 'success_update_table' => 'Tabela :table alterada com sucesso', - 'table_actions' => 'Ações da Tabela', - 'table_columns' => 'Campos da Tabela', - 'table_has_index' => 'A tabela já tem um Índice primário.', - 'table_name' => 'Nome da Tabela', - 'table_no_columns' => 'A tabela não tem campos...', - 'type' => 'Tipo', - 'type_not_supported' => 'Este tipo de campo não é suportado', - 'unique' => 'ÚNICO', - 'unknown_type' => 'Tipo Desconhecido', - 'update_table' => 'Alterar Tabela', - 'url_slug' => 'URL Slug (único)', - 'url_slug_ph' => 'URL slug (ex. posts)', - 'visibility' => 'Visibilidade', + 'delete_table_bread_conf' => 'Sim, remover este BREAD', + 'delete_table_bread_quest' => 'Tem certeza que deseja remover o BREAD para a tabela :table?', + 'delete_table_confirm' => 'Sim, remover esta tabela', + 'delete_table_question' => 'Tem certeza que deseja remover a tabela :table?', + 'description' => 'Descrição', + 'display_name' => 'Nome a ser Apresentado', + 'display_name_plural' => 'Nome a ser Apresentado (Plural)', + 'display_name_singular' => 'Nome a ser Apresentado (Singular)', + 'edit_bread' => 'Alterar BREAD', + 'edit_bread_for_table' => 'Alterar BREAD da tabela :table', + 'edit_rows' => 'Alterar as linhas para a tabela :table abaixo', + 'edit_table' => 'Alterar a tabela :table abaixo', + 'edit_table_not_exist' => 'A tabela que pretende remover não existe', + 'error_creating_bread' => 'Oops, ocorreu algo inesperado ao criar este BREAD', + 'error_removing_bread' => 'Oops, ocorreu algo inesperado ao remover este BREAD', + 'error_updating_bread' => 'Oops, ocorreu algo inesperado ao alterar este BREAD', + 'extra' => 'Extra', + 'field' => 'Campo', + 'field_safe_failed' => 'Erro ao gravar o campo :field, voltando atrás!', + 'generate_permissions' => 'Gerar Permissões', + 'icon_class' => 'Icon para usar nesta Tabela', + 'icon_hint' => 'Icon (opcional) Usar a', + 'icon_hint2' => 'Voyager Font Class', + 'index' => 'INDEX', + 'input_type' => 'Tipo de Input', + 'key' => 'Key', + 'model_class' => 'Nome da Classe do Model', + 'model_name' => 'Nome do Model', + 'model_name_ph' => 'ex. \App\Models\User, se vazio irá tentar usar o nome da tabela', + 'name_warning' => 'Por favor adicione o nome da coluna para criar o index', + 'no_composites_warning' => 'Esta tabela tem composite indexes. Nota, eles não são suportados de momento. Tenha atenção ao tentar adicionar/remover indexes.', + 'null' => 'Null', + 'optional_details' => 'Opções Adicionais', + 'policy_class' => 'Nome da classe Policy', + 'policy_name' => 'Policy Name', // todo find suitable translation + 'policy_name_ph' => 'ex. \App\Policies\UserPolicy, se deixado vazio, tentará usar o padrão', + 'primary' => 'PRIMARY', + 'server_pagination' => 'Paginação no Servidor', + 'success_create_table' => 'Tabela :table criada com sucesso', + 'success_created_bread' => 'BREAD criado com sucesso', + 'success_delete_table' => 'Tabela :table removida com sucesso', + 'success_remove_bread' => 'BREAD :datatype removido com sucesso', + 'success_update_bread' => 'BREAD :datatype alterado com sucesso', + 'success_update_table' => 'Tabela :table alterada com sucesso', + 'table_actions' => 'Ações da Tabela', + 'table_columns' => 'Campos da Tabela', + 'table_has_index' => 'A tabela já tem um Índice primário.', + 'table_name' => 'Nome da Tabela', + 'table_no_columns' => 'A tabela não tem campos...', + 'type' => 'Tipo', + 'type_not_supported' => 'Este tipo de campo não é suportado', + 'unique' => 'ÚNICO', + 'unknown_type' => 'Tipo Desconhecido', + 'update_table' => 'Alterar Tabela', + 'url_slug' => 'URL Slug (único)', + 'url_slug_ph' => 'URL slug (ex. posts)', + 'visibility' => 'Visibilidade', ], 'dimmer' => [ - 'page' => 'Página|Páginas', + 'page' => 'Página|Páginas', 'page_link_text' => 'Ver todas as páginas', - 'page_text' => 'Tem :count :string na seu banco de dados. Clique no botão abaixo para ver todas as páginas.', - 'post' => 'Publicação|Publicações', + 'page_text' => 'Tem :count :string na seu banco de dados. Clique no botão abaixo para ver todas as páginas.', + 'post' => 'Publicação|Publicações', 'post_link_text' => 'Ver todas as publicações', - 'post_text' => 'Tem :count :string na seu banco de dados. Clique no botão abaixo para ver todas as publicações.', - 'user' => 'Utilizador|Utilizadores', + 'post_text' => 'Tem :count :string na seu banco de dados. Clique no botão abaixo para ver todas as publicações.', + 'user' => 'Utilizador|Utilizadores', 'user_link_text' => 'Ver todos os utilizadores', - 'user_text' => 'Tem :count :string na seu banco de dados. Clique no botão abaixo para ver todos os utilizadores.', + 'user_text' => 'Tem :count :string na seu banco de dados. Clique no botão abaixo para ver todos os utilizadores.', ], 'form' => [ - 'field_password_keep' => 'Deixar vazio para manter o atual', + 'field_password_keep' => 'Deixar vazio para manter o atual', 'field_select_dd_relationship' => 'Certifique-se de configurar o relacionamento apropriado no método :method da classe :class.', - 'type_checkbox' => 'Check Box', //todo find suitable translation - 'type_codeeditor' => 'Editor de Código', - 'type_file' => 'Arquivo', - 'type_image' => 'Imagem', - 'type_radiobutton' => 'Radio Button', //todo find suitable translation - 'type_richtextbox' => 'Rich Textbox', //todo find suitable translation - 'type_selectdropdown' => 'Selecione Dropdown', //todo find suitable translation - 'type_textarea' => 'Text Area', //todo find suitable translation - 'type_textbox' => 'Text Box', //todo find suitable translation + 'type_checkbox' => 'Check Box', // todo find suitable translation + 'type_codeeditor' => 'Editor de Código', + 'type_file' => 'Arquivo', + 'type_image' => 'Imagem', + 'type_radiobutton' => 'Radio Button', // todo find suitable translation + 'type_richtextbox' => 'Rich Textbox', // todo find suitable translation + 'type_selectdropdown' => 'Selecione Dropdown', // todo find suitable translation + 'type_textarea' => 'Text Area', // todo find suitable translation + 'type_textbox' => 'Text Box', // todo find suitable translation ], // DataTable translations from: https://github.com/DataTables/Plugins/tree/master/i18n 'datatable' => [ - 'sEmptyTable' => 'Não há registos para apresentar', - 'sInfo' => 'Mostrando de _START_ até _END_ de _TOTAL_ registos', - 'sInfoEmpty' => 'Mostrando de 0 até 0 de 0 registos', - 'sInfoFiltered' => '(filtrado de _MAX_ registos no total)', - 'sInfoPostFix' => '', - 'sInfoThousands' => ',', - 'sLengthMenu' => 'Mostrar _MENU_ registos', + 'sEmptyTable' => 'Não há registos para apresentar', + 'sInfo' => 'Mostrando de _START_ até _END_ de _TOTAL_ registos', + 'sInfoEmpty' => 'Mostrando de 0 até 0 de 0 registos', + 'sInfoFiltered' => '(filtrado de _MAX_ registos no total)', + 'sInfoPostFix' => '', + 'sInfoThousands' => ',', + 'sLengthMenu' => 'Mostrar _MENU_ registos', 'sLoadingRecords' => 'A Carregar...', - 'sProcessing' => 'A processar...', - 'sSearch' => 'Procurar:', - 'sZeroRecords' => 'Não foram encontrados resultados', - 'oPaginate' => [ - 'sFirst' => 'Primeiro', - 'sLast' => 'Último', - 'sNext' => 'Seguinte', + 'sProcessing' => 'A processar...', + 'sSearch' => 'Procurar:', + 'sZeroRecords' => 'Não foram encontrados resultados', + 'oPaginate' => [ + 'sFirst' => 'Primeiro', + 'sLast' => 'Último', + 'sNext' => 'Seguinte', 'sPrevious' => 'Anterior', ], 'oAria' => [ - 'sSortAscending' => ': ativar para ordenar de forma crescente', + 'sSortAscending' => ': ativar para ordenar de forma crescente', 'sSortDescending' => ': ativar para ordenar de forma decrescente', ], ], 'theme' => [ - 'footer_copyright' => 'Produzido com por', + 'footer_copyright' => 'Produzido com por', 'footer_copyright2' => 'Produzido com rum e mais rum', ], 'json' => [ - 'invalid' => 'JSON Inválido', - 'invalid_message' => 'Submeteu um JSON inválido.', - 'valid' => 'JSON Válido', + 'invalid' => 'JSON Inválido', + 'invalid_message' => 'Submeteu um JSON inválido.', + 'valid' => 'JSON Válido', 'validation_errors' => 'Erros de validação', ], 'analytics' => [ - 'by_pageview' => 'Por pageview', - 'by_sessions' => 'Por sessões', - 'by_users' => 'Por usuário', - 'no_client_id' => 'Para aceder ao analytics precisa adicionar nas Configurações do Voyager a chave google_analytics_client_id com o código google de identidade do analytics client. Obtenha o sua chave através do Google developer console:', - 'set_view' => 'Selecionar Vista', - 'this_vs_last_week' => 'Esta Semana vs Semana Passada', - 'this_vs_last_year' => 'Este Ano vs Ano Passado', - 'top_browsers' => 'Top Browsers', - 'top_countries' => 'Top Países', + 'by_pageview' => 'Por pageview', + 'by_sessions' => 'Por sessões', + 'by_users' => 'Por usuário', + 'no_client_id' => 'Para aceder ao analytics precisa adicionar nas Configurações do Voyager a chave google_analytics_client_id com o código google de identidade do analytics client. Obtenha o sua chave através do Google developer console:', + 'set_view' => 'Selecionar Vista', + 'this_vs_last_week' => 'Esta Semana vs Semana Passada', + 'this_vs_last_year' => 'Este Ano vs Ano Passado', + 'top_browsers' => 'Top Browsers', + 'top_countries' => 'Top Países', 'various_visualizations' => 'Visualizações várias', ], 'error' => [ - 'symlink_created_text' => 'Acabamos de criar o link simbólico (symlink) faltante para você.', - 'symlink_created_title' => 'O link simbólico (symlink) de armazenamento faltante foi criado', - 'symlink_failed_text' => 'Não conseguimos gerar o link simbólico (symlink) faltante para sua aplicação. Parece que seu provedor de hospedagem não o suporta.', - 'symlink_failed_title' => 'Não foi possível criar o link simbólico (symlink) de armazenamento faltante', + 'symlink_created_text' => 'Acabamos de criar o link simbólico (symlink) faltante para você.', + 'symlink_created_title' => 'O link simbólico (symlink) de armazenamento faltante foi criado', + 'symlink_failed_text' => 'Não conseguimos gerar o link simbólico (symlink) faltante para sua aplicação. Parece que seu provedor de hospedagem não o suporta.', + 'symlink_failed_title' => 'Não foi possível criar o link simbólico (symlink) de armazenamento faltante', 'symlink_missing_button' => 'Consertá-lo', - 'symlink_missing_text' => 'Não foi possível encontrar o link simbólico (symlink) de armazenamento. Isso pode causar problemas ao carregar os arquivos de mídia no navegador.', - 'symlink_missing_title' => 'Link simbólico (symlink) de armazenamento faltante.', + 'symlink_missing_text' => 'Não foi possível encontrar o link simbólico (symlink) de armazenamento. Isso pode causar problemas ao carregar os arquivos de mídia no navegador.', + 'symlink_missing_title' => 'Link simbólico (symlink) de armazenamento faltante.', ], ]; diff --git a/lang/ro/voyager.php b/lang/ro/voyager.php index 98ceefd3a..ef3ba72d0 100644 --- a/lang/ro/voyager.php +++ b/lang/ro/voyager.php @@ -9,407 +9,407 @@ ], 'generic' => [ - 'action' => 'Acțiune', - 'actions' => 'Acțiuni', - 'add' => 'Adaugă', - 'add_folder' => 'Crează folder', - 'add_new' => 'Adaugă nou', - 'all_done' => 'Gata', - 'are_you_sure' => 'Sunteți sigur', - 'are_you_sure_delete' => 'Sunteți sigur că doriți să ștergeți', - 'auto_increment' => 'Auto incrementare', - 'browse' => 'Răsfoiește', - 'builder' => 'Constructor', - 'bulk_delete' => 'Șterge tot', - 'bulk_delete_confirm' => 'Da, șterge asta', - 'bulk_delete_nothing' => 'Nu ați ales nimic pentru ștergere', - 'cancel' => 'Anulare', - 'choose_type' => 'Alegeți tipul', - 'click_here' => 'Click aici', - 'close' => 'Închide', - 'compass' => 'Busolă', - 'created_at' => 'Data creării', - 'custom' => 'Personalizat', - 'dashboard' => 'Panou de control', - 'database' => 'Baza de date', - 'default' => 'Prestabilit', - 'delete' => 'Șterge', - 'delete_confirm' => 'Da, Șterge', - 'delete_question' => 'Sunteți sigur că vreți să ștergeți asta', - 'delete_this_confirm' => 'Da, șterge asta', - 'deselect_all' => 'Anulează selecția', - 'download' => 'Descarcă', - 'edit' => 'Editare', - 'email' => 'E-mail', - 'error_deleting' => 'A apărut o eroare în timpul ștergerii', - 'exception' => 'Excepție', - 'featured' => 'Recomandat', - 'field_does_not_exist' => 'Câmpul nu există', - 'how_to_use' => 'Cum să folosiți', - 'index' => 'Index', - 'internal_error' => 'Eroare internă', - 'items' => 'Element(e)', - 'keep_sidebar_open' => 'Yarr! Aruncați ancorele! (și ține-ți bara laterală deschisă)', - 'key' => 'Cheie', - 'last_modified' => 'Ultima modificare', - 'length' => 'Lungime', - 'login' => 'Login', - 'media' => 'Media', - 'menu_builder' => 'Constructor de meniuri', - 'move' => 'Mutare', - 'name' => 'Nume', - 'new' => 'Nou', - 'no' => 'Nu', - 'no_thanks' => 'Nu, mulțumesc', - 'not_null' => 'Nu-i Null', - 'options' => 'Opțiuni', - 'password' => 'Parolă', - 'permissions' => 'Permisiuni', - 'profile' => 'Profil', - 'public_url' => 'URL public', - 'read' => 'Citire', - 'rename' => 'Redenumire', - 'required' => 'Obligatoriu', - 'return_to_list' => 'Întoarcere la listă', - 'route' => 'Traseu', - 'save' => 'Salvare', - 'search' => 'Caută', - 'select_all' => 'Selectează tot', - 'settings' => 'Setări', - 'showing_entries' => 'Publicare afișată de la :from până la :to din :all|Publicări afișate de la :from până la :to din :all', - 'submit' => 'Trimite', + 'action' => 'Acțiune', + 'actions' => 'Acțiuni', + 'add' => 'Adaugă', + 'add_folder' => 'Crează folder', + 'add_new' => 'Adaugă nou', + 'all_done' => 'Gata', + 'are_you_sure' => 'Sunteți sigur', + 'are_you_sure_delete' => 'Sunteți sigur că doriți să ștergeți', + 'auto_increment' => 'Auto incrementare', + 'browse' => 'Răsfoiește', + 'builder' => 'Constructor', + 'bulk_delete' => 'Șterge tot', + 'bulk_delete_confirm' => 'Da, șterge asta', + 'bulk_delete_nothing' => 'Nu ați ales nimic pentru ștergere', + 'cancel' => 'Anulare', + 'choose_type' => 'Alegeți tipul', + 'click_here' => 'Click aici', + 'close' => 'Închide', + 'compass' => 'Busolă', + 'created_at' => 'Data creării', + 'custom' => 'Personalizat', + 'dashboard' => 'Panou de control', + 'database' => 'Baza de date', + 'default' => 'Prestabilit', + 'delete' => 'Șterge', + 'delete_confirm' => 'Da, Șterge', + 'delete_question' => 'Sunteți sigur că vreți să ștergeți asta', + 'delete_this_confirm' => 'Da, șterge asta', + 'deselect_all' => 'Anulează selecția', + 'download' => 'Descarcă', + 'edit' => 'Editare', + 'email' => 'E-mail', + 'error_deleting' => 'A apărut o eroare în timpul ștergerii', + 'exception' => 'Excepție', + 'featured' => 'Recomandat', + 'field_does_not_exist' => 'Câmpul nu există', + 'how_to_use' => 'Cum să folosiți', + 'index' => 'Index', + 'internal_error' => 'Eroare internă', + 'items' => 'Element(e)', + 'keep_sidebar_open' => 'Yarr! Aruncați ancorele! (și ține-ți bara laterală deschisă)', + 'key' => 'Cheie', + 'last_modified' => 'Ultima modificare', + 'length' => 'Lungime', + 'login' => 'Login', + 'media' => 'Media', + 'menu_builder' => 'Constructor de meniuri', + 'move' => 'Mutare', + 'name' => 'Nume', + 'new' => 'Nou', + 'no' => 'Nu', + 'no_thanks' => 'Nu, mulțumesc', + 'not_null' => 'Nu-i Null', + 'options' => 'Opțiuni', + 'password' => 'Parolă', + 'permissions' => 'Permisiuni', + 'profile' => 'Profil', + 'public_url' => 'URL public', + 'read' => 'Citire', + 'rename' => 'Redenumire', + 'required' => 'Obligatoriu', + 'return_to_list' => 'Întoarcere la listă', + 'route' => 'Traseu', + 'save' => 'Salvare', + 'search' => 'Caută', + 'select_all' => 'Selectează tot', + 'settings' => 'Setări', + 'showing_entries' => 'Publicare afișată de la :from până la :to din :all|Publicări afișate de la :from până la :to din :all', + 'submit' => 'Trimite', 'successfully_added_new' => 'Adăugat cu succes', - 'successfully_deleted' => 'Șters cu succes', - 'successfully_updated' => 'Actualizat cu succes', - 'timestamp' => 'Timestamp-ul', - 'title' => 'Titlu', - 'type' => 'Tip', - 'unsigned' => 'Nesemnat', - 'unstick_sidebar' => 'Desfaceți bara laterală', - 'update' => 'Actualizează', - 'update_failed' => 'Actualizare eșuată', - 'upload' => 'Încărcare', - 'url' => 'URL', - 'view' => 'Vedere', - 'viewing' => 'Vizualizare', - 'yes' => 'Da', - 'yes_please' => 'Da, vă rog', + 'successfully_deleted' => 'Șters cu succes', + 'successfully_updated' => 'Actualizat cu succes', + 'timestamp' => 'Timestamp-ul', + 'title' => 'Titlu', + 'type' => 'Tip', + 'unsigned' => 'Nesemnat', + 'unstick_sidebar' => 'Desfaceți bara laterală', + 'update' => 'Actualizează', + 'update_failed' => 'Actualizare eșuată', + 'upload' => 'Încărcare', + 'url' => 'URL', + 'view' => 'Vedere', + 'viewing' => 'Vizualizare', + 'yes' => 'Da', + 'yes_please' => 'Da, vă rog', ], 'login' => [ - 'loggingin' => 'Logare în sistem', + 'loggingin' => 'Logare în sistem', 'signin_below' => 'Conectați-vă mai jos:', - 'welcome' => 'Bine ați venit la Voyager. Panoul de control ce lipsește în Laravel', + 'welcome' => 'Bine ați venit la Voyager. Panoul de control ce lipsește în Laravel', ], 'profile' => [ - 'avatar' => 'Poza', - 'edit' => 'Editează profilul', - 'edit_user' => 'Editează utilizatorul', - 'password' => 'Parola', + 'avatar' => 'Poza', + 'edit' => 'Editează profilul', + 'edit_user' => 'Editează utilizatorul', + 'password' => 'Parola', 'password_hint' => 'Lăsați gol pentru a păstra aceeași', - 'role' => 'Rol', - 'user_role' => 'Rolul utilizatorului', + 'role' => 'Rol', + 'user_role' => 'Rolul utilizatorului', ], 'settings' => [ - 'usage_help' => 'Puteți folosi valoarea fiecărei setări, oriunde pe site apelând', - 'save' => 'Salvează setările', - 'new' => 'Setare nouă', - 'help_name' => 'Numele setării (ex: Titlu Admin)', - 'help_key' => 'Cheia setării (ex: admin_title)', - 'help_option' => '(opțional, se aplică doar la unele tipuri, cum ar fi dropdown sau buton radio)', - 'add_new' => 'Adăugați setare nouă', - 'delete_question' => 'Sunteți sigur că doriți să ștergeți setarea :setting?', - 'delete_confirm' => 'Da, șterge această setare', + 'usage_help' => 'Puteți folosi valoarea fiecărei setări, oriunde pe site apelând', + 'save' => 'Salvează setările', + 'new' => 'Setare nouă', + 'help_name' => 'Numele setării (ex: Titlu Admin)', + 'help_key' => 'Cheia setării (ex: admin_title)', + 'help_option' => '(opțional, se aplică doar la unele tipuri, cum ar fi dropdown sau buton radio)', + 'add_new' => 'Adăugați setare nouă', + 'delete_question' => 'Sunteți sigur că doriți să ștergeți setarea :setting?', + 'delete_confirm' => 'Da, șterge această setare', 'successfully_created' => 'Setare creată cu succes', - 'successfully_saved' => 'Setare salvată cu succes', + 'successfully_saved' => 'Setare salvată cu succes', 'successfully_deleted' => 'Setare ștearsă cu succes', - 'already_at_top' => 'Deja este prima în listă', - 'already_at_bottom' => 'Deja este ultima în listă', - 'moved_order_up' => 'Setarea :name a fost mutată mai sus', - 'moved_order_down' => 'Setarea :name a fost mutată mai jos', + 'already_at_top' => 'Deja este prima în listă', + 'already_at_bottom' => 'Deja este ultima în listă', + 'moved_order_up' => 'Setarea :name a fost mutată mai sus', + 'moved_order_down' => 'Setarea :name a fost mutată mai jos', 'successfully_removed' => 'Valoarea :name a fost ștearsă cu succes', - 'group_general' => 'General', - 'group_admin' => 'Admin', - 'group_site' => 'Site', - 'group' => 'Grup', - 'help_group' => 'Atașați această setare la grupul', + 'group_general' => 'General', + 'group_admin' => 'Admin', + 'group_site' => 'Site', + 'group' => 'Grup', + 'help_group' => 'Atașați această setare la grupul', ], 'media' => [ - 'add_new_folder' => 'Adaugă un folder nou', - 'audio_support' => 'Browser-ul dvs. nu suportă elementul audio.', - 'create_new_folder' => 'Crează un folder nou', + 'add_new_folder' => 'Adaugă un folder nou', + 'audio_support' => 'Browser-ul dvs. nu suportă elementul audio.', + 'create_new_folder' => 'Crează un folder nou', 'delete_folder_question' => 'Ștergerea folderului va duce la ștergerea fișierelor și folderelor ce se află el.', - 'destination_folder' => 'Folderul de destinație', - 'drag_drop_info' => 'Trageți și aruncați fișiere.', - 'error_already_exists' => 'Există deja fișier/folder cu așa nume în acest folder', - 'error_creating_dir' => 'Eroare la crearea folderului: verificați permisiunile', - 'error_deleting_file' => 'Eroare la ștergerea fișierului: verificați permisiunile', - 'error_deleting_folder' => 'Eroare la ștergerea folderului: verificați permisiunile', - 'error_may_exist' => 'Există deja un fișier sau un folder cu așa nume: alegeți alt nume sau ștergeți fișierul curent', - 'error_moving' => 'Eroare la mutarea fișierului/folderului: verificați permisiunile.', - 'error_uploading' => 'Încărcare eșuată: S-a produs o eroare necunoscută', - 'folder_exists_already' => 'Folder cu așa nume există deja. Vă rugăm să o ștergeți dacă doriți să creați una cu același nume.', - 'image_does_not_exist' => 'Imaginea nu există', - 'image_removed' => 'Imagine ștearsă', - 'library' => 'Bibliotecă media', - 'loading' => 'SE ÎNCARCĂ FIȘIERELE DVS. MEDIA', - 'move_file_folder' => 'Mutare fișier/folder', - 'new_file_folder' => 'Nume nou fișier/folder', - 'new_folder_name' => 'Nume nou folder', - 'no_files_here' => 'Aici nu există fișiere', - 'no_files_in_folder' => 'În acest folder nu există fișiere', - 'nothing_selected' => 'Nimic selectat', - 'rename_file_folder' => 'Redenumire fișier/folder', - 'success_uploaded_file' => 'Încărcarea fișierului a avut loc cu succes', - 'success_uploading' => 'Încărcarea imaginii a avut loc cu succes', - 'uploading_wrong_type' => 'Încărcare eșuată: formatul fișierului nu este suportat sau fișierul este prea mare pentru a fi încărcat!', - 'video_support' => 'Browser-ul dvs. nu suportă elementul video.', + 'destination_folder' => 'Folderul de destinație', + 'drag_drop_info' => 'Trageți și aruncați fișiere.', + 'error_already_exists' => 'Există deja fișier/folder cu așa nume în acest folder', + 'error_creating_dir' => 'Eroare la crearea folderului: verificați permisiunile', + 'error_deleting_file' => 'Eroare la ștergerea fișierului: verificați permisiunile', + 'error_deleting_folder' => 'Eroare la ștergerea folderului: verificați permisiunile', + 'error_may_exist' => 'Există deja un fișier sau un folder cu așa nume: alegeți alt nume sau ștergeți fișierul curent', + 'error_moving' => 'Eroare la mutarea fișierului/folderului: verificați permisiunile.', + 'error_uploading' => 'Încărcare eșuată: S-a produs o eroare necunoscută', + 'folder_exists_already' => 'Folder cu așa nume există deja. Vă rugăm să o ștergeți dacă doriți să creați una cu același nume.', + 'image_does_not_exist' => 'Imaginea nu există', + 'image_removed' => 'Imagine ștearsă', + 'library' => 'Bibliotecă media', + 'loading' => 'SE ÎNCARCĂ FIȘIERELE DVS. MEDIA', + 'move_file_folder' => 'Mutare fișier/folder', + 'new_file_folder' => 'Nume nou fișier/folder', + 'new_folder_name' => 'Nume nou folder', + 'no_files_here' => 'Aici nu există fișiere', + 'no_files_in_folder' => 'În acest folder nu există fișiere', + 'nothing_selected' => 'Nimic selectat', + 'rename_file_folder' => 'Redenumire fișier/folder', + 'success_uploaded_file' => 'Încărcarea fișierului a avut loc cu succes', + 'success_uploading' => 'Încărcarea imaginii a avut loc cu succes', + 'uploading_wrong_type' => 'Încărcare eșuată: formatul fișierului nu este suportat sau fișierul este prea mare pentru a fi încărcat!', + 'video_support' => 'Browser-ul dvs. nu suportă elementul video.', ], 'menu_builder' => [ - 'color' => 'Culoarea în RGB sau hex (opțional)', - 'color_ph' => 'Culoarea (ex: #ffffff sau rgb(255, 255, 255)', - 'create_new_item' => 'Crează un punct de meniu nou', - 'delete_item_confirm' => 'Da, șterge acest punct de meniu', + 'color' => 'Culoarea în RGB sau hex (opțional)', + 'color_ph' => 'Culoarea (ex: #ffffff sau rgb(255, 255, 255)', + 'create_new_item' => 'Crează un punct de meniu nou', + 'delete_item_confirm' => 'Da, șterge acest punct de meniu', 'delete_item_question' => 'Sunteți sigur, că doriți să ștergeți acest punct de meniu?', - 'drag_drop_info' => 'Trageți punctul din meniu mai jos, pentru a schimba ordinea lor.', - 'dynamic_route' => 'Cale(route) dinamică', - 'edit_item' => 'Editează punct de meniu', - 'icon_class' => 'Iconiță pentru punctul de meniu (Folosiți ', - 'icon_class2' => 'Voyager Font Class)', - 'icon_class_ph' => 'Iconiță (opțional)', - 'item_route' => 'Calea pentru punctul de meniu', - 'item_title' => 'Denumirea punctului de meniu', - 'link_type' => 'Tipul link-ului', - 'new_menu_item' => 'Punct de meniu nou', - 'open_in' => 'Deschide în', - 'open_new' => 'Fereastră/Tab nou', - 'open_same' => 'aceeași fereastră/tab', - 'route_parameter' => 'Parametrii rutei (dacă există)', - 'static_url' => 'URL Static', + 'drag_drop_info' => 'Trageți punctul din meniu mai jos, pentru a schimba ordinea lor.', + 'dynamic_route' => 'Cale(route) dinamică', + 'edit_item' => 'Editează punct de meniu', + 'icon_class' => 'Iconiță pentru punctul de meniu (Folosiți ', + 'icon_class2' => 'Voyager Font Class)', + 'icon_class_ph' => 'Iconiță (opțional)', + 'item_route' => 'Calea pentru punctul de meniu', + 'item_title' => 'Denumirea punctului de meniu', + 'link_type' => 'Tipul link-ului', + 'new_menu_item' => 'Punct de meniu nou', + 'open_in' => 'Deschide în', + 'open_new' => 'Fereastră/Tab nou', + 'open_same' => 'aceeași fereastră/tab', + 'route_parameter' => 'Parametrii rutei (dacă există)', + 'static_url' => 'URL Static', 'successfully_created' => 'Punctul de meniu a fost creat cu succes.', 'successfully_deleted' => 'Punctul de meniu a fost șters cu succes.', 'successfully_updated' => 'Punctul de meniu a fost actualizat cu succes.', - 'updated_order' => 'Structura meniului a fost actualizată cu succes.', - 'url' => 'URL pentru punctul de meniu', - 'usage_hint' => 'Puteți afișa un meniu oriunde pe site apelând|Puteți afișa acest meniu oriunde pe site apelând', + 'updated_order' => 'Structura meniului a fost actualizată cu succes.', + 'url' => 'URL pentru punctul de meniu', + 'usage_hint' => 'Puteți afișa un meniu oriunde pe site apelând|Puteți afișa acest meniu oriunde pe site apelând', ], 'post' => [ - 'category' => 'Categoria postării', - 'content' => 'Conținutul postării', - 'details' => 'Detaliile postării', - 'excerpt' => 'Extras Descrierea scurtă a postării', - 'image' => 'Imagine', + 'category' => 'Categoria postării', + 'content' => 'Conținutul postării', + 'details' => 'Detaliile postării', + 'excerpt' => 'Extras Descrierea scurtă a postării', + 'image' => 'Imagine', 'meta_description' => 'Descriere meta', - 'meta_keywords' => 'Cuvinte cheie', - 'new' => 'Creați o postare nouă', - 'seo_content' => 'Conținut SEO', - 'seo_title' => 'Titlu SEO', - 'slug' => 'slug(link)', - 'status' => 'Starea postării', - 'status_draft' => 'Ciornă', - 'status_pending' => 'În așteptare', + 'meta_keywords' => 'Cuvinte cheie', + 'new' => 'Creați o postare nouă', + 'seo_content' => 'Conținut SEO', + 'seo_title' => 'Titlu SEO', + 'slug' => 'slug(link)', + 'status' => 'Starea postării', + 'status_draft' => 'Ciornă', + 'status_pending' => 'În așteptare', 'status_published' => 'Publicat', - 'title' => 'Titlu', - 'title_sub' => 'Titlul postării', - 'update' => 'Actualizarea postării', + 'title' => 'Titlu', + 'title_sub' => 'Titlul postării', + 'update' => 'Actualizarea postării', ], 'database' => [ - 'add_bread' => 'Adăugați BREAD la acest tabel', - 'add_new_column' => 'Adăugați o coloană nouă', - 'add_softdeletes' => 'Adăugați Soft Deletes', - 'add_timestamps' => 'Adăugați timestamp-uri', - 'already_exists' => 'deja există', - 'already_exists_table' => 'Tabelul :table deja există', - 'bread_crud_actions' => 'Acțiuni BREAD/CRUD', - 'bread_info' => 'Informații despre BREAD', - 'column' => 'Coloană', - 'composite_warning' => 'Avertizare: această coloană face parte din indexul compozit', - 'controller_name' => 'Numele controller-ului', - 'controller_name_hint' => 'ex: PageController, dacă lăsați liber se va folosi BREAD Controller', - 'create_bread_for_table' => 'Creare BREAD pentru tabelul :table', - 'create_migration' => 'Creare migrare pentru acest tabel?', - 'create_model_table' => 'Creare model pentru acest tabel?', - 'create_new_table' => 'Creare tabel nou', - 'create_your_new_table' => 'Creare tabel nou', - 'default' => 'Prdefinit', - 'delete_bread' => 'Șterge BREAD', + 'add_bread' => 'Adăugați BREAD la acest tabel', + 'add_new_column' => 'Adăugați o coloană nouă', + 'add_softdeletes' => 'Adăugați Soft Deletes', + 'add_timestamps' => 'Adăugați timestamp-uri', + 'already_exists' => 'deja există', + 'already_exists_table' => 'Tabelul :table deja există', + 'bread_crud_actions' => 'Acțiuni BREAD/CRUD', + 'bread_info' => 'Informații despre BREAD', + 'column' => 'Coloană', + 'composite_warning' => 'Avertizare: această coloană face parte din indexul compozit', + 'controller_name' => 'Numele controller-ului', + 'controller_name_hint' => 'ex: PageController, dacă lăsați liber se va folosi BREAD Controller', + 'create_bread_for_table' => 'Creare BREAD pentru tabelul :table', + 'create_migration' => 'Creare migrare pentru acest tabel?', + 'create_model_table' => 'Creare model pentru acest tabel?', + 'create_new_table' => 'Creare tabel nou', + 'create_your_new_table' => 'Creare tabel nou', + 'default' => 'Prdefinit', + 'delete_bread' => 'Șterge BREAD', 'delete_bread_before_table' => 'Înainte de a șterge tabelul este necesar să ștergeți BREAD-ul tabelului.', - 'delete_table_bread_conf' => 'Da, șterge BREAD', - 'delete_table_bread_quest' => 'Sunteți sigur, că doriți să ștergeți BREAD-ul tabelului :table?', - 'delete_table_confirm' => 'Da, șterge tabelul', - 'delete_table_question' => 'Sunteți sigur că doriți să ștergeți tabelul :table?', - 'description' => 'Descriere', - 'display_name' => 'Numele afișat', - 'display_name_plural' => 'Numele afișat (la plural)', - 'display_name_singular' => 'Numele afișat (la singular)', - 'edit_bread' => 'Editare BREAD', - 'edit_bread_for_table' => 'Editare BREAD pentru tabelul :table', - 'edit_rows' => 'Editați rândurile tabelului :table mai jos', - 'edit_table' => 'Editați tabelul :table mai jos', - 'edit_table_not_exist' => 'Tabelul pe care doriți să-l editați nu există', - 'error_creating_bread' => 'Se pare că a apărut o problemă cu crearea acestui BREAD', - 'error_removing_bread' => 'Se pare că a apărut o problemă cu ștergerea acestui BREAD', - 'error_updating_bread' => 'Se pare că a apărut o problemă cu actualizarea acestui BREAD', - 'extra' => 'Suplimentar', - 'field' => 'Câmp', - 'field_safe_failed' => 'Nu s-a reușit savlarea câmpului :field, ne întoarcem la valoarea precedentă.', - 'generate_permissions' => 'Generare permisiuni', - 'icon_class' => 'Iconiță pentru acest tabel', - 'icon_hint' => 'Iconiță pentru (opțional)', - 'icon_hint2' => 'Voyager Font Class', - 'index' => 'INDEX', - 'input_type' => 'Tipul input-ului', - 'key' => 'Cheie', - 'model_class' => 'Numele clasei modelului', - 'model_name' => 'Numele modelului', - 'model_name_ph' => 'ex: \App\Models\User, dacă lăsați gol, vom încerca și vom folosi numele tabelului', - 'name_warning' => 'Vă rugăm să indicați numele coloanei înainte de adăugarea indexului', - 'no_composites_warning' => 'În acest tabel există index compozit. Atrageți atenția că la momentul de față ele nu sunt suportate. Fiți atenți când încercați să adăugați/ștergeți indexuri.', - 'null' => 'Null', - 'optional_details' => 'Detalii suplimentare', - 'policy_class' => 'Policy Class Name', - 'policy_name' => 'Policy Name', - 'policy_name_ph' => 'ex. \App\Policies\UserPolicy, dacă lăsați gol, vom încerca și vom folosi predefinit', - 'primary' => 'CHEIE PRIMARĂ', - 'server_pagination' => 'Paginare pe server', - 'success_create_table' => 'Tabelul :table a fost creat cu succes', - 'success_created_bread' => 'BREAD nou a fost creat cu succes', - 'success_delete_table' => 'Tabelul :table a fost șters cu succes', - 'success_remove_bread' => 'BREAD a fost șters cu succes din :datatype', - 'success_update_bread' => 'BREAD a fost actualizat cu succes în :datatype', - 'success_update_table' => 'Tabelul :table a fost actualizat cu succes', - 'table_actions' => 'Acțiuni cu tabelul', - 'table_columns' => 'Coloanele tabelului', - 'table_has_index' => 'În acest tabel există deja cheia primară.', - 'table_name' => 'Numele tabelului', - 'table_no_columns' => 'Acest tabel nu are coloane...', - 'type' => 'Tip', - 'type_not_supported' => 'Acest tip nu este suportat', - 'unique' => 'UNIQUE', - 'unknown_type' => 'Tip necunoscut', - 'update_table' => 'Actualizare tabel', - 'url_slug' => 'URL Slug (trebuie să fie unic)', - 'url_slug_ph' => 'URL slug (ex:, posts)', - 'visibility' => 'Vizibilitate', - 'relationship' => [ - 'relationship' => 'Relație', - 'relationships' => 'Relații', - 'has_one' => 'Unu la unu', - 'has_many' => 'Unu la mulți', - 'belongs_to' => 'Mulți la unu', - 'belongs_to_many' => 'Mulți la mulți', - 'which_column_from' => 'Ce coloană din', - 'is_used_to_reference' => 'este folosită pentru a face referire la', - 'pivot_table' => 'Tabel de legătură', - 'selection_details' => 'Detaliile selecției', - 'display_the' => 'Afișează', - 'store_the' => 'Salvează', - 'easy_there' => 'Ușor, Căpitane', - 'before_create' => 'Înainte de a crea o relație ai nevoie mai întâi să creezi BREAD-ul.
Apoi, te întorci înapoi pentru a edita BREAD-ul și atunci vei putea adăuga o relație nouă.
Mulțam.', - 'cancel' => 'Anulare', - 'add_new' => 'Adăugare relație nouă', - 'open' => 'Deschide', - 'close' => 'Închide', - 'relationship_details' => 'Detaliile relației', - 'browse' => 'Răsfoiește', - 'read' => 'Citește', - 'edit' => 'Editează', - 'add' => 'Adaugă', - 'delete' => 'Șterge', - 'create' => 'Crează o Relație', - 'namespace' => 'Model Năimspăis (ex: App\Models\User)', - ], + 'delete_table_bread_conf' => 'Da, șterge BREAD', + 'delete_table_bread_quest' => 'Sunteți sigur, că doriți să ștergeți BREAD-ul tabelului :table?', + 'delete_table_confirm' => 'Da, șterge tabelul', + 'delete_table_question' => 'Sunteți sigur că doriți să ștergeți tabelul :table?', + 'description' => 'Descriere', + 'display_name' => 'Numele afișat', + 'display_name_plural' => 'Numele afișat (la plural)', + 'display_name_singular' => 'Numele afișat (la singular)', + 'edit_bread' => 'Editare BREAD', + 'edit_bread_for_table' => 'Editare BREAD pentru tabelul :table', + 'edit_rows' => 'Editați rândurile tabelului :table mai jos', + 'edit_table' => 'Editați tabelul :table mai jos', + 'edit_table_not_exist' => 'Tabelul pe care doriți să-l editați nu există', + 'error_creating_bread' => 'Se pare că a apărut o problemă cu crearea acestui BREAD', + 'error_removing_bread' => 'Se pare că a apărut o problemă cu ștergerea acestui BREAD', + 'error_updating_bread' => 'Se pare că a apărut o problemă cu actualizarea acestui BREAD', + 'extra' => 'Suplimentar', + 'field' => 'Câmp', + 'field_safe_failed' => 'Nu s-a reușit savlarea câmpului :field, ne întoarcem la valoarea precedentă.', + 'generate_permissions' => 'Generare permisiuni', + 'icon_class' => 'Iconiță pentru acest tabel', + 'icon_hint' => 'Iconiță pentru (opțional)', + 'icon_hint2' => 'Voyager Font Class', + 'index' => 'INDEX', + 'input_type' => 'Tipul input-ului', + 'key' => 'Cheie', + 'model_class' => 'Numele clasei modelului', + 'model_name' => 'Numele modelului', + 'model_name_ph' => 'ex: \App\Models\User, dacă lăsați gol, vom încerca și vom folosi numele tabelului', + 'name_warning' => 'Vă rugăm să indicați numele coloanei înainte de adăugarea indexului', + 'no_composites_warning' => 'În acest tabel există index compozit. Atrageți atenția că la momentul de față ele nu sunt suportate. Fiți atenți când încercați să adăugați/ștergeți indexuri.', + 'null' => 'Null', + 'optional_details' => 'Detalii suplimentare', + 'policy_class' => 'Policy Class Name', + 'policy_name' => 'Policy Name', + 'policy_name_ph' => 'ex. \App\Policies\UserPolicy, dacă lăsați gol, vom încerca și vom folosi predefinit', + 'primary' => 'CHEIE PRIMARĂ', + 'server_pagination' => 'Paginare pe server', + 'success_create_table' => 'Tabelul :table a fost creat cu succes', + 'success_created_bread' => 'BREAD nou a fost creat cu succes', + 'success_delete_table' => 'Tabelul :table a fost șters cu succes', + 'success_remove_bread' => 'BREAD a fost șters cu succes din :datatype', + 'success_update_bread' => 'BREAD a fost actualizat cu succes în :datatype', + 'success_update_table' => 'Tabelul :table a fost actualizat cu succes', + 'table_actions' => 'Acțiuni cu tabelul', + 'table_columns' => 'Coloanele tabelului', + 'table_has_index' => 'În acest tabel există deja cheia primară.', + 'table_name' => 'Numele tabelului', + 'table_no_columns' => 'Acest tabel nu are coloane...', + 'type' => 'Tip', + 'type_not_supported' => 'Acest tip nu este suportat', + 'unique' => 'UNIQUE', + 'unknown_type' => 'Tip necunoscut', + 'update_table' => 'Actualizare tabel', + 'url_slug' => 'URL Slug (trebuie să fie unic)', + 'url_slug_ph' => 'URL slug (ex:, posts)', + 'visibility' => 'Vizibilitate', + 'relationship' => [ + 'relationship' => 'Relație', + 'relationships' => 'Relații', + 'has_one' => 'Unu la unu', + 'has_many' => 'Unu la mulți', + 'belongs_to' => 'Mulți la unu', + 'belongs_to_many' => 'Mulți la mulți', + 'which_column_from' => 'Ce coloană din', + 'is_used_to_reference' => 'este folosită pentru a face referire la', + 'pivot_table' => 'Tabel de legătură', + 'selection_details' => 'Detaliile selecției', + 'display_the' => 'Afișează', + 'store_the' => 'Salvează', + 'easy_there' => 'Ușor, Căpitane', + 'before_create' => 'Înainte de a crea o relație ai nevoie mai întâi să creezi BREAD-ul.
Apoi, te întorci înapoi pentru a edita BREAD-ul și atunci vei putea adăuga o relație nouă.
Mulțam.', + 'cancel' => 'Anulare', + 'add_new' => 'Adăugare relație nouă', + 'open' => 'Deschide', + 'close' => 'Închide', + 'relationship_details' => 'Detaliile relației', + 'browse' => 'Răsfoiește', + 'read' => 'Citește', + 'edit' => 'Editează', + 'add' => 'Adaugă', + 'delete' => 'Șterge', + 'create' => 'Crează o Relație', + 'namespace' => 'Model Năimspăis (ex: App\Models\User)', + ], ], 'dimmer' => [ - 'page' => 'pagină|pagini', + 'page' => 'pagină|pagini', 'page_link_text' => 'Toate paginile', - 'page_text' => 'În baza de date există :count :string', - 'post' => 'postare|postări', + 'page_text' => 'În baza de date există :count :string', + 'post' => 'postare|postări', 'post_link_text' => 'Toate postările', - 'post_text' => 'În baza de date există :count :string', - 'user' => 'utilizator|utilizatori', + 'post_text' => 'În baza de date există :count :string', + 'user' => 'utilizator|utilizatori', 'user_link_text' => 'Toți utilizatorii', - 'user_text' => 'În baza de date există :count :string', + 'user_text' => 'În baza de date există :count :string', ], 'form' => [ - 'field_password_keep' => 'Lăsați gol, dacă nu doriți să schimbați parola', + 'field_password_keep' => 'Lăsați gol, dacă nu doriți să schimbați parola', 'field_select_dd_relationship' => 'Este necesar să setați realțiile (relationship) în metoda :method din clasa :class.', - 'type_checkbox' => 'Checkbox', - 'type_codeeditor' => 'Editor de cod', - 'type_file' => 'Fișier', - 'type_image' => 'Imagine', - 'type_radiobutton' => 'Radio buton', - 'type_richtextbox' => 'Edito vizual', - 'type_selectdropdown' => 'Listă dropdown', - 'type_textarea' => 'Câmp text (textarea)', - 'type_textbox' => 'Câmp text (simplu)', + 'type_checkbox' => 'Checkbox', + 'type_codeeditor' => 'Editor de cod', + 'type_file' => 'Fișier', + 'type_image' => 'Imagine', + 'type_radiobutton' => 'Radio buton', + 'type_richtextbox' => 'Edito vizual', + 'type_selectdropdown' => 'Listă dropdown', + 'type_textarea' => 'Câmp text (textarea)', + 'type_textbox' => 'Câmp text (simplu)', ], // DataTable translations from: https://github.com/DataTables/Plugins/tree/master/i18n 'datatable' => [ - 'sEmptyTable' => 'În tabel nu există date', - 'sInfo' => 'Afișat de la _START_ până la _END_ din _TOTAL_ înregistrări', - 'sInfoEmpty' => 'Afișat 0 din 0 înregistrări', - 'sInfoFiltered' => '(sortat din _MAX_ înregitrări)', - 'sInfoPostFix' => '', - 'sInfoThousands' => ',', - 'sLengthMenu' => 'Afișați _MENU_ înregistrări', + 'sEmptyTable' => 'În tabel nu există date', + 'sInfo' => 'Afișat de la _START_ până la _END_ din _TOTAL_ înregistrări', + 'sInfoEmpty' => 'Afișat 0 din 0 înregistrări', + 'sInfoFiltered' => '(sortat din _MAX_ înregitrări)', + 'sInfoPostFix' => '', + 'sInfoThousands' => ',', + 'sLengthMenu' => 'Afișați _MENU_ înregistrări', 'sLoadingRecords' => 'Încărcare înregistrări...', - 'sProcessing' => 'Așteptați...', - 'sSearch' => 'Căutare:', - 'sZeroRecords' => 'Lipsesc înregistrări', - 'oPaginate' => [ - 'sFirst' => 'Prima', - 'sLast' => 'Ultima', - 'sNext' => 'Următoarea', + 'sProcessing' => 'Așteptați...', + 'sSearch' => 'Căutare:', + 'sZeroRecords' => 'Lipsesc înregistrări', + 'oPaginate' => [ + 'sFirst' => 'Prima', + 'sLast' => 'Ultima', + 'sNext' => 'Următoarea', 'sPrevious' => 'Precedenta', ], 'oAria' => [ - 'sSortAscending' => ': activați pentru a sorta coloana crescător', + 'sSortAscending' => ': activați pentru a sorta coloana crescător', 'sSortDescending' => ': activați pentru a sorta coloana descrescător', ], ], 'theme' => [ - 'footer_copyright' => 'Creat cu ', + 'footer_copyright' => 'Creat cu ', 'footer_copyright2' => 'Creat cu rom și chiar mai mult rom :) ', ], 'json' => [ - 'invalid' => 'format JSON invalid', - 'invalid_message' => 'Ați introdus un format JSON invalid', - 'valid' => 'Format JSON corect', + 'invalid' => 'format JSON invalid', + 'invalid_message' => 'Ați introdus un format JSON invalid', + 'valid' => 'Format JSON corect', 'validation_errors' => 'Eroare la verificarea datelor', ], 'analytics' => [ - 'by_pageview' => 'După pagini', - 'by_sessions' => 'După sesiuni', - 'by_users' => 'După utilizatori', - 'no_client_id' => 'Pentru a vedea statisticile din analytics aveți nevoie de google analytics cliend id pe care să-l adăugați în setări pentru cheia google_analytics_client_id. Puteți obține cheia(analytics cliend id) în contul dvs. Google developers console:', - 'set_view' => 'Alegeți modul de vizualizare', - 'this_vs_last_week' => 'Săptămâna aceasta în comparație cu săptămâna trecută.', - 'this_vs_last_year' => 'Anul acesta în comparație cu anul trecut', - 'top_browsers' => 'Top browser-e', - 'top_countries' => 'Top țări', + 'by_pageview' => 'După pagini', + 'by_sessions' => 'După sesiuni', + 'by_users' => 'După utilizatori', + 'no_client_id' => 'Pentru a vedea statisticile din analytics aveți nevoie de google analytics cliend id pe care să-l adăugați în setări pentru cheia google_analytics_client_id. Puteți obține cheia(analytics cliend id) în contul dvs. Google developers console:', + 'set_view' => 'Alegeți modul de vizualizare', + 'this_vs_last_week' => 'Săptămâna aceasta în comparație cu săptămâna trecută.', + 'this_vs_last_year' => 'Anul acesta în comparație cu anul trecut', + 'top_browsers' => 'Top browser-e', + 'top_countries' => 'Top țări', 'various_visualizations' => 'Vizualizări diverse', ], 'error' => [ - 'symlink_created_text' => 'Noi tocmai am creat legătura simbolică(symlink) pentru dvs.', - 'symlink_created_title' => 'Legătura simbolică a folderului storage ce lipsea, a fost creată.', - 'symlink_failed_text' => 'Nu am putut genera link-ul simbolic ce lipsește pentru aplicația dvs. Se pare că hosting provider-ul dvs. nu suportă symlinks))).', - 'symlink_failed_title' => 'Nu am putut crea link-ul simbolic pentru folderul storage.', + 'symlink_created_text' => 'Noi tocmai am creat legătura simbolică(symlink) pentru dvs.', + 'symlink_created_title' => 'Legătura simbolică a folderului storage ce lipsea, a fost creată.', + 'symlink_failed_text' => 'Nu am putut genera link-ul simbolic ce lipsește pentru aplicația dvs. Se pare că hosting provider-ul dvs. nu suportă symlinks))).', + 'symlink_failed_title' => 'Nu am putut crea link-ul simbolic pentru folderul storage.', 'symlink_missing_button' => 'Corectați', - 'symlink_missing_text' => 'Nu am putut găsi un link simbolic pentru folderul storage. Aceasta poate cauza probleme cu încărcarea fișierelor media de către browser.', - 'symlink_missing_title' => 'Lipsește link-ul simbolic pentru folderul storage.', + 'symlink_missing_text' => 'Nu am putut găsi un link simbolic pentru folderul storage. Aceasta poate cauza probleme cu încărcarea fișierelor media de către browser.', + 'symlink_missing_title' => 'Lipsește link-ul simbolic pentru folderul storage.', ], ]; diff --git a/lang/ru/voyager.php b/lang/ru/voyager.php index ec2723daa..b4335da9c 100644 --- a/lang/ru/voyager.php +++ b/lang/ru/voyager.php @@ -9,386 +9,386 @@ ], 'generic' => [ - 'action' => 'Действие', - 'actions' => 'Доступные действия', - 'add' => 'Добавить', - 'add_folder' => 'Создать папку', - 'add_new' => 'Добавить', - 'all_done' => 'Готово', - 'are_you_sure' => 'Вы уверены', - 'are_you_sure_delete' => 'Вы точно хотите удалить', - 'auto_increment' => 'Auto Increment', - 'browse' => 'Просмотр', - 'builder' => 'Конструктор', - 'bulk_delete' => 'Удалить всё', - 'bulk_delete_confirm' => 'Да, удалить это', - 'bulk_delete_nothing' => 'Вы ничего не выбрали для удаления!', - 'cancel' => 'Отмена', - 'choose_type' => 'Выберите тип поля', - 'click_here' => 'Кликните тут', - 'close' => 'Закрыть', - 'compass' => 'Компасс', - 'created_at' => 'Дата создания', - 'custom' => 'Пользовательская категория', - 'dashboard' => 'Панель управления', - 'database' => 'База данных', - 'default' => 'По умолчанию', - 'delete' => 'Удалить', - 'delete_confirm' => 'Да, удалить!', - 'delete_question' => 'Вы действительно хотите удалить это?', - 'delete_this_confirm' => 'Да, удалить это', - 'deselect_all' => 'Отменить выделение', - 'download' => 'Загрузка', - 'edit' => 'Редактирование', - 'email' => 'E-mail', - 'error_deleting' => 'Во время удаления возникла ошибка', - 'exception' => 'Исключение', - 'featured' => 'Рекомендуемый', - 'field_does_not_exist' => 'Поля не существует', - 'how_to_use' => 'Как использовать', - 'index' => 'Индекс', - 'internal_error' => 'Внутреняя ошибка', - 'items' => 'элемент(ы)', - 'keep_sidebar_open' => 'Раскрывать панель', - 'key' => 'Ключ', - 'last_modified' => 'Последнее изменение', - 'length' => 'Длина', - 'login' => 'Логин', - 'media' => 'Медиа', - 'menu_builder' => 'Конструктор меню', - 'move' => 'Переместить', - 'name' => 'Имя', - 'new' => 'Новинка', - 'no' => 'Нет', - 'no_thanks' => 'Нет, спасибо', - 'not_null' => 'Не Null', - 'options' => 'Параметры', - 'password' => 'Пароль', - 'permissions' => 'Права доступа', - 'profile' => 'Профиль', - 'public_url' => 'Общедоступный URL-адрес', - 'read' => 'Считывание', - 'rename' => 'Переименовать', - 'required' => 'Обязательный', - 'return_to_list' => 'Вернуться к списку', - 'route' => 'Маршрут', - 'save' => 'Сохранить', - 'search' => 'Искать', - 'select_all' => 'Выбрать все', - 'settings' => 'Настройки', - 'showing_entries' => 'Показана от :from до :to из :all запись|Показано от :from до :to из :all записей', - 'submit' => 'Отправить', + 'action' => 'Действие', + 'actions' => 'Доступные действия', + 'add' => 'Добавить', + 'add_folder' => 'Создать папку', + 'add_new' => 'Добавить', + 'all_done' => 'Готово', + 'are_you_sure' => 'Вы уверены', + 'are_you_sure_delete' => 'Вы точно хотите удалить', + 'auto_increment' => 'Auto Increment', + 'browse' => 'Просмотр', + 'builder' => 'Конструктор', + 'bulk_delete' => 'Удалить всё', + 'bulk_delete_confirm' => 'Да, удалить это', + 'bulk_delete_nothing' => 'Вы ничего не выбрали для удаления!', + 'cancel' => 'Отмена', + 'choose_type' => 'Выберите тип поля', + 'click_here' => 'Кликните тут', + 'close' => 'Закрыть', + 'compass' => 'Компасс', + 'created_at' => 'Дата создания', + 'custom' => 'Пользовательская категория', + 'dashboard' => 'Панель управления', + 'database' => 'База данных', + 'default' => 'По умолчанию', + 'delete' => 'Удалить', + 'delete_confirm' => 'Да, удалить!', + 'delete_question' => 'Вы действительно хотите удалить это?', + 'delete_this_confirm' => 'Да, удалить это', + 'deselect_all' => 'Отменить выделение', + 'download' => 'Загрузка', + 'edit' => 'Редактирование', + 'email' => 'E-mail', + 'error_deleting' => 'Во время удаления возникла ошибка', + 'exception' => 'Исключение', + 'featured' => 'Рекомендуемый', + 'field_does_not_exist' => 'Поля не существует', + 'how_to_use' => 'Как использовать', + 'index' => 'Индекс', + 'internal_error' => 'Внутреняя ошибка', + 'items' => 'элемент(ы)', + 'keep_sidebar_open' => 'Раскрывать панель', + 'key' => 'Ключ', + 'last_modified' => 'Последнее изменение', + 'length' => 'Длина', + 'login' => 'Логин', + 'media' => 'Медиа', + 'menu_builder' => 'Конструктор меню', + 'move' => 'Переместить', + 'name' => 'Имя', + 'new' => 'Новинка', + 'no' => 'Нет', + 'no_thanks' => 'Нет, спасибо', + 'not_null' => 'Не Null', + 'options' => 'Параметры', + 'password' => 'Пароль', + 'permissions' => 'Права доступа', + 'profile' => 'Профиль', + 'public_url' => 'Общедоступный URL-адрес', + 'read' => 'Считывание', + 'rename' => 'Переименовать', + 'required' => 'Обязательный', + 'return_to_list' => 'Вернуться к списку', + 'route' => 'Маршрут', + 'save' => 'Сохранить', + 'search' => 'Искать', + 'select_all' => 'Выбрать все', + 'settings' => 'Настройки', + 'showing_entries' => 'Показана от :from до :to из :all запись|Показано от :from до :to из :all записей', + 'submit' => 'Отправить', 'successfully_added_new' => 'Успешное добавление', - 'successfully_deleted' => 'Успешное удаление', - 'successfully_updated' => 'Успешное обновление', - 'timestamp' => 'Временная метка', - 'title' => 'Название', - 'type' => 'Тип', - 'unsigned' => 'Unsigned', - 'unstick_sidebar' => 'Открепить боковую панель', - 'update' => 'Обновить', - 'update_failed' => 'Обновление не удалось', - 'upload' => 'Загрузка', - 'url' => 'URL', - 'view' => 'Вид', - 'viewing' => 'Просмотр', - 'yes' => 'Да', - 'yes_please' => 'Да, пожалуйста', + 'successfully_deleted' => 'Успешное удаление', + 'successfully_updated' => 'Успешное обновление', + 'timestamp' => 'Временная метка', + 'title' => 'Название', + 'type' => 'Тип', + 'unsigned' => 'Unsigned', + 'unstick_sidebar' => 'Открепить боковую панель', + 'update' => 'Обновить', + 'update_failed' => 'Обновление не удалось', + 'upload' => 'Загрузка', + 'url' => 'URL', + 'view' => 'Вид', + 'viewing' => 'Просмотр', + 'yes' => 'Да', + 'yes_please' => 'Да, пожалуйста', ], 'login' => [ - 'loggingin' => 'Вход в систему', + 'loggingin' => 'Вход в систему', 'signin_below' => 'Вход в панель управления', - 'welcome' => 'Панель управления, которой не хватало в Laravel', + 'welcome' => 'Панель управления, которой не хватало в Laravel', ], 'profile' => [ - 'avatar' => 'Фото', - 'edit' => 'Настройки профиля', - 'edit_user' => 'Изменить профиль', - 'password' => 'Пароль', + 'avatar' => 'Фото', + 'edit' => 'Настройки профиля', + 'edit_user' => 'Изменить профиль', + 'password' => 'Пароль', 'password_hint' => 'Для сохранения того же значения оставьте поле пустым', - 'role' => 'Группа', - 'user_role' => 'Группа пользователя', + 'role' => 'Группа', + 'user_role' => 'Группа пользователя', ], 'settings' => [ - 'usage_help' => 'Чтобы получить значения параметров, используйте в шаблоне код ', - 'save' => 'Сохранить настройки', - 'new' => 'Создать настройку', - 'help_name' => 'Название параметра (например, Мой параметр)', - 'help_key' => 'Ключ параметра (например, my_parametr)', - 'help_option' => '(необязательно, применяется только к выпадающему списку или радио-кнопкам)', - 'add_new' => 'Добавить новый параметр', - 'delete_question' => 'Вы уверены, что нужно удалить параметр :setting?', - 'delete_confirm' => 'Да, удалите этот параметр', + 'usage_help' => 'Чтобы получить значения параметров, используйте в шаблоне код ', + 'save' => 'Сохранить настройки', + 'new' => 'Создать настройку', + 'help_name' => 'Название параметра (например, Мой параметр)', + 'help_key' => 'Ключ параметра (например, my_parametr)', + 'help_option' => '(необязательно, применяется только к выпадающему списку или радио-кнопкам)', + 'add_new' => 'Добавить новый параметр', + 'delete_question' => 'Вы уверены, что нужно удалить параметр :setting?', + 'delete_confirm' => 'Да, удалите этот параметр', 'successfully_created' => 'Параметры успешно созданы', - 'successfully_saved' => 'Параметры успешно сохранены', + 'successfully_saved' => 'Параметры успешно сохранены', 'successfully_deleted' => 'Параметры успешно удалены', - 'already_at_top' => 'Уже размещено вверху списка', - 'already_at_bottom' => 'Уже размещено внизу списка', - 'moved_order_up' => 'Параметр :name перемещен вверх', - 'moved_order_down' => 'Параметр :name перемещен вниз', + 'already_at_top' => 'Уже размещено вверху списка', + 'already_at_bottom' => 'Уже размещено внизу списка', + 'moved_order_up' => 'Параметр :name перемещен вверх', + 'moved_order_down' => 'Параметр :name перемещен вниз', 'successfully_removed' => 'Успешно удалено значение параметра :name', - 'group_general' => 'Основное', - 'group_admin' => 'Админ', - 'group_site' => 'Сайт', - 'group' => 'Группа', - 'help_group' => 'Привязать эту настройку к группе', + 'group_general' => 'Основное', + 'group_admin' => 'Админ', + 'group_site' => 'Сайт', + 'group' => 'Группа', + 'help_group' => 'Привязать эту настройку к группе', ], 'media' => [ - 'add_new_folder' => 'Добавить новую папку', - 'audio_support' => 'Ваш браузер не поддерживает элемент audio.', - 'create_new_folder' => 'Создать новую папку', + 'add_new_folder' => 'Добавить новую папку', + 'audio_support' => 'Ваш браузер не поддерживает элемент audio.', + 'create_new_folder' => 'Создать новую папку', 'delete_folder_question' => 'Удаление папки приведет к удалению всего ее содержимого.', - 'destination_folder' => 'Папка назначения', - 'drag_drop_info' => 'Перетащите файлы мышью или нажмите на кнопку внизу для загрузки.', - 'error_already_exists' => 'Файл/папка с таким именем уже существуют в данном каталоге', - 'error_creating_dir' => 'Не удалось создать папку: проверьте права доступа', - 'error_deleting_file' => 'Не удалось удалить файл: проверьте права доступа', - 'error_deleting_folder' => 'Не удалось удалить папку: проверьте права доступа', - 'error_may_exist' => 'Файл или папка с таким именем уже существуют: выберите другое имя или удалите существующий файл!', - 'error_moving' => 'Не удалось переместить файл или папку: проверьте права доступа.', - 'error_uploading' => 'Ошибка загрузки: Произошла неизвестная ошибка!', - 'folder_exists_already' => 'Папка с таким именем уже существует: удалите ее, если хотите создать новую с таким же именем.', - 'image_does_not_exist' => 'Изображения не существует', - 'image_removed' => 'Изображение удалено', - 'library' => 'Библиотека медиа', - 'loading' => 'ИДЕТ ЗАГРУЗКА ВАШИХ ФАЙЛОВ', - 'move_file_folder' => 'Переместить файл/папку', - 'new_file_folder' => 'Новое имя файла/папки', - 'new_folder_name' => 'Новое имя папки', - 'no_files_here' => 'Тут нет файлов', - 'no_files_in_folder' => 'Отсутствуют файлы в данной папке', - 'nothing_selected' => 'Ничего не выбрано', - 'rename_file_folder' => 'Переименовать файл/папку', - 'success_uploaded_file' => 'Успешная загрузка файла!', - 'success_uploading' => 'Успешная загрузка изображения!', - 'uploading_wrong_type' => 'Ошибка загрузки: неподдерживаемый формат файла или слишком большой размер файла для загрузки!', - 'video_support' => 'Ваш браузер не поддерживает элемент video.', - 'crop' => 'Обрезать', - 'crop_and_create' => 'Создать и Обрезать', - 'crop_override_confirm' => 'Исходное изображение будет изменено, вы уверены?', - 'crop_image' => 'Обрезать изображение', - 'success_crop_image' => 'Изображение успешно обрезано', - 'height' => 'Высота: ', - 'width' => 'Ширина: ', + 'destination_folder' => 'Папка назначения', + 'drag_drop_info' => 'Перетащите файлы мышью или нажмите на кнопку внизу для загрузки.', + 'error_already_exists' => 'Файл/папка с таким именем уже существуют в данном каталоге', + 'error_creating_dir' => 'Не удалось создать папку: проверьте права доступа', + 'error_deleting_file' => 'Не удалось удалить файл: проверьте права доступа', + 'error_deleting_folder' => 'Не удалось удалить папку: проверьте права доступа', + 'error_may_exist' => 'Файл или папка с таким именем уже существуют: выберите другое имя или удалите существующий файл!', + 'error_moving' => 'Не удалось переместить файл или папку: проверьте права доступа.', + 'error_uploading' => 'Ошибка загрузки: Произошла неизвестная ошибка!', + 'folder_exists_already' => 'Папка с таким именем уже существует: удалите ее, если хотите создать новую с таким же именем.', + 'image_does_not_exist' => 'Изображения не существует', + 'image_removed' => 'Изображение удалено', + 'library' => 'Библиотека медиа', + 'loading' => 'ИДЕТ ЗАГРУЗКА ВАШИХ ФАЙЛОВ', + 'move_file_folder' => 'Переместить файл/папку', + 'new_file_folder' => 'Новое имя файла/папки', + 'new_folder_name' => 'Новое имя папки', + 'no_files_here' => 'Тут нет файлов', + 'no_files_in_folder' => 'Отсутствуют файлы в данной папке', + 'nothing_selected' => 'Ничего не выбрано', + 'rename_file_folder' => 'Переименовать файл/папку', + 'success_uploaded_file' => 'Успешная загрузка файла!', + 'success_uploading' => 'Успешная загрузка изображения!', + 'uploading_wrong_type' => 'Ошибка загрузки: неподдерживаемый формат файла или слишком большой размер файла для загрузки!', + 'video_support' => 'Ваш браузер не поддерживает элемент video.', + 'crop' => 'Обрезать', + 'crop_and_create' => 'Создать и Обрезать', + 'crop_override_confirm' => 'Исходное изображение будет изменено, вы уверены?', + 'crop_image' => 'Обрезать изображение', + 'success_crop_image' => 'Изображение успешно обрезано', + 'height' => 'Высота: ', + 'width' => 'Ширина: ', ], 'menu_builder' => [ - 'color' => 'Цвет в RGB или hex (необязательно)', - 'color_ph' => 'Цвет (например, #ffffff или rgb(255, 255, 255)', - 'create_new_item' => 'Создать новый пункт меню', - 'delete_item_confirm' => 'Да, удалить этот пункт меню', + 'color' => 'Цвет в RGB или hex (необязательно)', + 'color_ph' => 'Цвет (например, #ffffff или rgb(255, 255, 255)', + 'create_new_item' => 'Создать новый пункт меню', + 'delete_item_confirm' => 'Да, удалить этот пункт меню', 'delete_item_question' => 'Вы уверены, что хотите удалить этот пункт меню?', - 'drag_drop_info' => 'Перетащите пункты меню ниже, чтобы изменить их порядок.', - 'dynamic_route' => 'Динамический путь', - 'edit_item' => 'Редактировать пункт меню', - 'icon_class' => 'Иконка для пункта меню (Используйте ', - 'icon_class2' => 'Voyager Font Class)', - 'icon_class_ph' => 'Иконка (необязательно)', - 'item_route' => 'Путь для пункта меню', - 'item_title' => 'Название пункта меню', - 'link_type' => 'Тип ссылки', - 'new_menu_item' => 'Новый пункт меню', - 'open_in' => 'Открыть в', - 'open_new' => 'Новая вкладка/окно', - 'open_same' => 'Та же вкладка/окно', - 'route_parameter' => 'Параметры пути (если есть)', - 'static_url' => 'Статический URL', + 'drag_drop_info' => 'Перетащите пункты меню ниже, чтобы изменить их порядок.', + 'dynamic_route' => 'Динамический путь', + 'edit_item' => 'Редактировать пункт меню', + 'icon_class' => 'Иконка для пункта меню (Используйте ', + 'icon_class2' => 'Voyager Font Class)', + 'icon_class_ph' => 'Иконка (необязательно)', + 'item_route' => 'Путь для пункта меню', + 'item_title' => 'Название пункта меню', + 'link_type' => 'Тип ссылки', + 'new_menu_item' => 'Новый пункт меню', + 'open_in' => 'Открыть в', + 'open_new' => 'Новая вкладка/окно', + 'open_same' => 'Та же вкладка/окно', + 'route_parameter' => 'Параметры пути (если есть)', + 'static_url' => 'Статический URL', 'successfully_created' => 'Пункт меню успешно создан.', 'successfully_deleted' => 'Пункт меню успешно удален.', 'successfully_updated' => 'Пункт меню успешно обновлен.', - 'updated_order' => 'Структура меню успешно обновлена.', - 'url' => 'URL для пункта меню', - 'usage_hint' => 'Вы можете вывести меню в любом месте вашего сайта, вызвав |Вы можете вывести это меню в любом месте вашего сайта, вызвав ', + 'updated_order' => 'Структура меню успешно обновлена.', + 'url' => 'URL для пункта меню', + 'usage_hint' => 'Вы можете вывести меню в любом месте вашего сайта, вызвав |Вы можете вывести это меню в любом месте вашего сайта, вызвав ', ], 'post' => [ - 'category' => 'Категория сообщения', - 'content' => 'Текст сообщения', - 'details' => 'Свойства', - 'excerpt' => 'Анонс Краткое описание статьи', - 'image' => 'Изображение', + 'category' => 'Категория сообщения', + 'content' => 'Текст сообщения', + 'details' => 'Свойства', + 'excerpt' => 'Анонс Краткое описание статьи', + 'image' => 'Изображение', 'meta_description' => 'Описание (meta)', - 'meta_keywords' => 'Ключевые слова (meta)', - 'new' => 'Опубликовать', - 'seo_content' => 'SEO текст', - 'seo_title' => 'SEO название', - 'slug' => 'Ссылка', - 'status' => 'Статус публикации', - 'status_draft' => 'Черновик', - 'status_pending' => 'На модерации', + 'meta_keywords' => 'Ключевые слова (meta)', + 'new' => 'Опубликовать', + 'seo_content' => 'SEO текст', + 'seo_title' => 'SEO название', + 'slug' => 'Ссылка', + 'status' => 'Статус публикации', + 'status_draft' => 'Черновик', + 'status_pending' => 'На модерации', 'status_published' => 'Опубликовано', - 'title' => 'Заголовок', - 'title_sub' => 'Название статьи', - 'update' => 'Обновить', + 'title' => 'Заголовок', + 'title_sub' => 'Название статьи', + 'update' => 'Обновить', ], 'database' => [ - 'add_bread' => 'Добавить BREAD к данной таблице', - 'add_new_column' => 'Добавить новый столбец', - 'add_softdeletes' => 'Добавить Soft Deletes', - 'add_timestamps' => 'Добавить метки времени', - 'already_exists' => 'уже существует', - 'already_exists_table' => 'Таблица :table уже существует', - 'bread_crud_actions' => 'BREAD/CRUD действия', - 'bread_info' => 'BREAD информация', - 'column' => 'Столбец', - 'composite_warning' => 'Предупреждение: этот столбец является частью составного индекса', - 'controller_name' => 'Имя контроллера', - 'controller_name_hint' => 'например, пустой PageController, будет использовать BREAD Controller', - 'create_bread_for_table' => 'Создать BREAD для таблицы :table', - 'create_migration' => 'Создать миграцию для данной таблицы?', - 'create_model_table' => 'Создать модель для данной таблицы?', - 'create_new_table' => 'Создать новую таблицу', - 'create_your_new_table' => 'Создать новую таблицу', - 'default' => 'По умолчанию', - 'delete_bread' => 'Удалить BREAD', + 'add_bread' => 'Добавить BREAD к данной таблице', + 'add_new_column' => 'Добавить новый столбец', + 'add_softdeletes' => 'Добавить Soft Deletes', + 'add_timestamps' => 'Добавить метки времени', + 'already_exists' => 'уже существует', + 'already_exists_table' => 'Таблица :table уже существует', + 'bread_crud_actions' => 'BREAD/CRUD действия', + 'bread_info' => 'BREAD информация', + 'column' => 'Столбец', + 'composite_warning' => 'Предупреждение: этот столбец является частью составного индекса', + 'controller_name' => 'Имя контроллера', + 'controller_name_hint' => 'например, пустой PageController, будет использовать BREAD Controller', + 'create_bread_for_table' => 'Создать BREAD для таблицы :table', + 'create_migration' => 'Создать миграцию для данной таблицы?', + 'create_model_table' => 'Создать модель для данной таблицы?', + 'create_new_table' => 'Создать новую таблицу', + 'create_your_new_table' => 'Создать новую таблицу', + 'default' => 'По умолчанию', + 'delete_bread' => 'Удалить BREAD', 'delete_bread_before_table' => 'Перед удалением таблицы обязательно удалите BREAD таблицы.', - 'delete_table_bread_conf' => 'Да, удалить BREAD', - 'delete_table_bread_quest' => 'Вы уверены, что хотите удалить BREAD для таблицы :table?', - 'delete_table_confirm' => 'Да, удалить таблицу', - 'delete_table_question' => 'Вы точно хотите удалить таблицу :table?', - 'description' => 'Описание', - 'display_name' => 'Отображаемое имя', - 'display_name_plural' => 'Отображаемое имя (во множественном числе)', - 'display_name_singular' => 'Отображаемое имя (в единственном числе)', - 'edit_bread' => 'Редактировать BREAD', - 'edit_bread_for_table' => 'Редактировать BREAD для таблицы :table', - 'edit_rows' => 'Редактировать строки таблицы :table ниже', - 'edit_table' => 'Редактировать таблицу :table ниже', - 'edit_table_not_exist' => 'Таблицы, которую вы хотите редактировать, не существует', - 'error_creating_bread' => 'Похоже, возникла проблема с созданием данного BREAD', - 'error_removing_bread' => 'Похоже, возникла проблема с удалением данного BREAD', - 'error_updating_bread' => 'Похоже, возникла проблема с обновлением данного BREAD', - 'extra' => 'Дополнительно', - 'field' => 'Поле', - 'field_safe_failed' => 'Не удалось сохранить поле :field, будет произведен откат к предыдущему значению.', - 'generate_permissions' => 'Создание прав доступа', - 'icon_class' => 'Значок для данной таблицы', - 'icon_hint' => 'Значок для (необязательно)', - 'icon_hint2' => 'Voyager Font Class', - 'index' => 'INDEX', - 'input_type' => 'Тип ввода', - 'key' => 'Ключ', - 'model_class' => 'Название класса модели', - 'model_name' => 'Название модели', - 'model_name_ph' => 'например \App\Models\User, если оставить пустым - попытается использовать название таблицы', - 'name_warning' => 'Укажите столбец перед добавлением индекса', - 'no_composites_warning' => 'В данной таблице присутствует составной индекс. Обратите внимание, что в настоящий момент они не поддерживаются. Будьте осторожны при попытке добавить/удалить индексы.', - 'null' => 'Null', - 'optional_details' => 'Дополнительные сведения', - 'policy_class' => 'Имя класса политики', - 'policy_name' => 'Политика', - 'policy_name_ph' => 'например \App\Policies\UserPolicy, если оставить пустым - попытается использовать политику по умолчанию', - 'primary' => 'ПЕРВИЧНЫЙ КЛЮЧ', - 'server_pagination' => 'Пагинация на стороне сервера', - 'success_create_table' => 'Таблица :table успешно создана', - 'success_created_bread' => 'Новый BREAD успешно создан', - 'success_delete_table' => 'Таблица :table успешно удалена', - 'success_remove_bread' => 'BREAD успешно удален из :datatype', - 'success_update_bread' => 'BREAD успешно обновлен в :datatype', - 'success_update_table' => 'Таблица :table успешно обновлена', - 'table_actions' => 'Действия с таблицей', - 'table_columns' => 'Столбцы таблицы', - 'table_has_index' => 'В данной таблице уже имеется первичный ключ.', - 'table_name' => 'Название таблицы', - 'table_no_columns' => 'В таблице отсутствуют столбцы...', - 'type' => 'Тип', - 'type_not_supported' => 'Данный тип не поддерживается', - 'unique' => 'UNIQUE', - 'unknown_type' => 'Неизвестный тип', - 'update_table' => 'Обновить таблицу', - 'url_slug' => 'URL Slug (должен быть уникальным)', - 'url_slug_ph' => 'URL slug (например, posts)', - 'visibility' => 'Видимость', + 'delete_table_bread_conf' => 'Да, удалить BREAD', + 'delete_table_bread_quest' => 'Вы уверены, что хотите удалить BREAD для таблицы :table?', + 'delete_table_confirm' => 'Да, удалить таблицу', + 'delete_table_question' => 'Вы точно хотите удалить таблицу :table?', + 'description' => 'Описание', + 'display_name' => 'Отображаемое имя', + 'display_name_plural' => 'Отображаемое имя (во множественном числе)', + 'display_name_singular' => 'Отображаемое имя (в единственном числе)', + 'edit_bread' => 'Редактировать BREAD', + 'edit_bread_for_table' => 'Редактировать BREAD для таблицы :table', + 'edit_rows' => 'Редактировать строки таблицы :table ниже', + 'edit_table' => 'Редактировать таблицу :table ниже', + 'edit_table_not_exist' => 'Таблицы, которую вы хотите редактировать, не существует', + 'error_creating_bread' => 'Похоже, возникла проблема с созданием данного BREAD', + 'error_removing_bread' => 'Похоже, возникла проблема с удалением данного BREAD', + 'error_updating_bread' => 'Похоже, возникла проблема с обновлением данного BREAD', + 'extra' => 'Дополнительно', + 'field' => 'Поле', + 'field_safe_failed' => 'Не удалось сохранить поле :field, будет произведен откат к предыдущему значению.', + 'generate_permissions' => 'Создание прав доступа', + 'icon_class' => 'Значок для данной таблицы', + 'icon_hint' => 'Значок для (необязательно)', + 'icon_hint2' => 'Voyager Font Class', + 'index' => 'INDEX', + 'input_type' => 'Тип ввода', + 'key' => 'Ключ', + 'model_class' => 'Название класса модели', + 'model_name' => 'Название модели', + 'model_name_ph' => 'например \App\Models\User, если оставить пустым - попытается использовать название таблицы', + 'name_warning' => 'Укажите столбец перед добавлением индекса', + 'no_composites_warning' => 'В данной таблице присутствует составной индекс. Обратите внимание, что в настоящий момент они не поддерживаются. Будьте осторожны при попытке добавить/удалить индексы.', + 'null' => 'Null', + 'optional_details' => 'Дополнительные сведения', + 'policy_class' => 'Имя класса политики', + 'policy_name' => 'Политика', + 'policy_name_ph' => 'например \App\Policies\UserPolicy, если оставить пустым - попытается использовать политику по умолчанию', + 'primary' => 'ПЕРВИЧНЫЙ КЛЮЧ', + 'server_pagination' => 'Пагинация на стороне сервера', + 'success_create_table' => 'Таблица :table успешно создана', + 'success_created_bread' => 'Новый BREAD успешно создан', + 'success_delete_table' => 'Таблица :table успешно удалена', + 'success_remove_bread' => 'BREAD успешно удален из :datatype', + 'success_update_bread' => 'BREAD успешно обновлен в :datatype', + 'success_update_table' => 'Таблица :table успешно обновлена', + 'table_actions' => 'Действия с таблицей', + 'table_columns' => 'Столбцы таблицы', + 'table_has_index' => 'В данной таблице уже имеется первичный ключ.', + 'table_name' => 'Название таблицы', + 'table_no_columns' => 'В таблице отсутствуют столбцы...', + 'type' => 'Тип', + 'type_not_supported' => 'Данный тип не поддерживается', + 'unique' => 'UNIQUE', + 'unknown_type' => 'Неизвестный тип', + 'update_table' => 'Обновить таблицу', + 'url_slug' => 'URL Slug (должен быть уникальным)', + 'url_slug_ph' => 'URL slug (например, posts)', + 'visibility' => 'Видимость', ], 'dimmer' => [ - 'page' => 'страница|страницы', + 'page' => 'страница|страницы', 'page_link_text' => 'Все страницы', - 'page_text' => 'В базе данных :count :string', - 'post' => 'запись|записи', + 'page_text' => 'В базе данных :count :string', + 'post' => 'запись|записи', 'post_link_text' => 'Все записи', - 'post_text' => 'В базе данных :count :string', - 'user' => 'пользователь|пользователей', + 'post_text' => 'В базе данных :count :string', + 'user' => 'пользователь|пользователей', 'user_link_text' => 'Все пользователи', - 'user_text' => 'В базе данных :count :string', + 'user_text' => 'В базе данных :count :string', ], 'form' => [ - 'field_password_keep' => 'Оставьте пустым, если не хотите менять пароль', + 'field_password_keep' => 'Оставьте пустым, если не хотите менять пароль', 'field_select_dd_relationship' => 'Обязательно настройте соответствующие отношения (relationship) в методе :method класса :class.', - 'type_checkbox' => 'Чекбокс', - 'type_codeeditor' => 'Редактор кода', - 'type_file' => 'Файл', - 'type_image' => 'Изображение', - 'type_radiobutton' => 'Радио-кнопка', - 'type_richtextbox' => 'Визуальный редактор', - 'type_selectdropdown' => 'Выпадающий список', - 'type_textarea' => 'Текстовое поле', - 'type_textbox' => 'Поле ввода', + 'type_checkbox' => 'Чекбокс', + 'type_codeeditor' => 'Редактор кода', + 'type_file' => 'Файл', + 'type_image' => 'Изображение', + 'type_radiobutton' => 'Радио-кнопка', + 'type_richtextbox' => 'Визуальный редактор', + 'type_selectdropdown' => 'Выпадающий список', + 'type_textarea' => 'Текстовое поле', + 'type_textbox' => 'Поле ввода', ], // DataTable translations from: https://github.com/DataTables/Plugins/tree/master/i18n 'datatable' => [ - 'sEmptyTable' => 'В таблице нет данных', - 'sInfo' => 'Показано от _START_ до _END_ из _TOTAL_ записей', - 'sInfoEmpty' => 'Показано 0 из 0 записей', - 'sInfoFiltered' => '(выбрано из _MAX_ записей)', - 'sInfoPostFix' => '', - 'sInfoThousands' => ',', - 'sLengthMenu' => 'Показать _MENU_ записей', + 'sEmptyTable' => 'В таблице нет данных', + 'sInfo' => 'Показано от _START_ до _END_ из _TOTAL_ записей', + 'sInfoEmpty' => 'Показано 0 из 0 записей', + 'sInfoFiltered' => '(выбрано из _MAX_ записей)', + 'sInfoPostFix' => '', + 'sInfoThousands' => ',', + 'sLengthMenu' => 'Показать _MENU_ записей', 'sLoadingRecords' => 'Загрузка записей...', - 'sProcessing' => 'Подождите...', - 'sSearch' => 'Поиск:', - 'sZeroRecords' => 'Записи отсутствуют', - 'oPaginate' => [ - 'sFirst' => 'Первая', - 'sLast' => 'Последняя', - 'sNext' => 'Следующая', + 'sProcessing' => 'Подождите...', + 'sSearch' => 'Поиск:', + 'sZeroRecords' => 'Записи отсутствуют', + 'oPaginate' => [ + 'sFirst' => 'Первая', + 'sLast' => 'Последняя', + 'sNext' => 'Следующая', 'sPrevious' => 'Предыдущая', ], 'oAria' => [ - 'sSortAscending' => ': активировать для сортировки столбца по возрастанию', + 'sSortAscending' => ': активировать для сортировки столбца по возрастанию', 'sSortDescending' => ': активировать для сортировки столбца по убыванию', ], ], 'theme' => [ - 'footer_copyright' => 'Сделано с ', + 'footer_copyright' => 'Сделано с ', 'footer_copyright2' => 'Сделано под ромом :) ', ], 'json' => [ - 'invalid' => 'неверный формат JSON', - 'invalid_message' => 'Введен неверный формат JSON', - 'valid' => 'Верный формат JSON', + 'invalid' => 'неверный формат JSON', + 'invalid_message' => 'Введен неверный формат JSON', + 'valid' => 'Верный формат JSON', 'validation_errors' => 'Ошибки при проверке данных', ], 'analytics' => [ - 'by_pageview' => 'По страницам', - 'by_sessions' => 'По сессиям', - 'by_users' => 'По пользователям', - 'no_client_id' => 'Для активации аналитики необходимо получить идентификатор клиента Google Analytics и добавить его в поле google_analytics_client_id меню настроек. Получить код Google Analytics: ', - 'set_view' => 'Выберите вид', - 'this_vs_last_week' => 'Текущая неделя в сравнении с прошлой.', - 'this_vs_last_year' => 'Нынешний год в сравнении с прошлым', - 'top_browsers' => 'Лучшие браузеры', - 'top_countries' => 'Лучшие страны', + 'by_pageview' => 'По страницам', + 'by_sessions' => 'По сессиям', + 'by_users' => 'По пользователям', + 'no_client_id' => 'Для активации аналитики необходимо получить идентификатор клиента Google Analytics и добавить его в поле google_analytics_client_id меню настроек. Получить код Google Analytics: ', + 'set_view' => 'Выберите вид', + 'this_vs_last_week' => 'Текущая неделя в сравнении с прошлой.', + 'this_vs_last_year' => 'Нынешний год в сравнении с прошлым', + 'top_browsers' => 'Лучшие браузеры', + 'top_countries' => 'Лучшие страны', 'various_visualizations' => 'Различные визуализации', ], 'error' => [ - 'symlink_created_text' => 'Мы создали ссылку для вас.', - 'symlink_created_title' => 'Создана недостающая ссылка на хранилище данных.', - 'symlink_failed_text' => 'Не удалось создать недостающую ссылку: похоже, дело в хостинге.', - 'symlink_failed_title' => 'Не удалось создать ссылку для хранилища данных.', + 'symlink_created_text' => 'Мы создали ссылку для вас.', + 'symlink_created_title' => 'Создана недостающая ссылка на хранилище данных.', + 'symlink_failed_text' => 'Не удалось создать недостающую ссылку: похоже, дело в хостинге.', + 'symlink_failed_title' => 'Не удалось создать ссылку для хранилища данных.', 'symlink_missing_button' => 'Исправьте', - 'symlink_missing_text' => 'Не найдена ссылка на хранилище данных: это может вызвать проблемы с загрузкой медиафайлов.', - 'symlink_missing_title' => 'Отсутствует ссылка на хранилище данных.', + 'symlink_missing_text' => 'Не найдена ссылка на хранилище данных: это может вызвать проблемы с загрузкой медиафайлов.', + 'symlink_missing_title' => 'Отсутствует ссылка на хранилище данных.', ], ]; diff --git a/lang/tr/voyager.php b/lang/tr/voyager.php index acb518c2d..eb38b028b 100644 --- a/lang/tr/voyager.php +++ b/lang/tr/voyager.php @@ -9,377 +9,377 @@ ], 'generic' => [ - 'action' => 'İşlem', - 'actions' => 'İşlemler', - 'add' => 'Ekle', - 'add_folder' => 'Klasör ekle', - 'add_new' => 'Yeni Ekle', - 'all_done' => 'Hepsi tamam', - 'are_you_sure' => 'Emin misin', - 'are_you_sure_delete' => 'Silmek istediğinden emin misin', - 'auto_increment' => 'Otomatik artan', - 'browse' => 'Gözden geçirmek', - 'builder' => 'Kurucu', - 'cancel' => 'İptal', - 'choose_type' => 'Tip seçin', - 'click_here' => 'Buraya tıkla', - 'close' => 'Kapat', - 'compass' => 'Sınır', - 'created_at' => 'Oluşturma zamanı', - 'custom' => 'Özel', - 'dashboard' => 'Yönetim', - 'database' => 'Veritabanı', - 'default' => 'Varsayılan', - 'delete' => 'Sil', - 'delete_confirm' => 'Evet , sil !', - 'delete_question' => 'Silmek istediğinden emin misin', - 'delete_this_confirm' => 'Evet , bunu sil !', - 'deselect_all' => 'Tüm seçimi kaldır', - 'download' => 'İndir', - 'edit' => 'Düzenle', - 'email' => 'E-mail', - 'error_deleting' => 'Maalesef bunu silmek için bir sorun oluştu', - 'exception' => 'İstisna', - 'featured' => 'Öne Çıkan', - 'field_does_not_exist' => 'Alan bulunamadı', - 'how_to_use' => 'Nasıl kullanılır', - 'index' => 'İndeks', - 'internal_error' => 'İç hata', - 'items' => 'Eşya(lar)', - 'keep_sidebar_open' => 'Yarr! Bağları bırak! (ve yan menüyü açık tut)', - 'key' => 'Anahtar', - 'last_modified' => 'Son güncellenem', - 'length' => 'Uzunluk', - 'login' => 'Giriş', - 'media' => 'Medya', - 'menu_builder' => 'Menu kurucusu', - 'move' => 'Hareket', - 'name' => 'İsim', - 'new' => 'New', - 'no' => 'Hayır', - 'no_thanks' => 'Hayır teşekkürler', - 'not_null' => 'Boş değil', - 'options' => 'Seçenekler', - 'password' => 'Şifre', - 'permissions' => 'İzinler', - 'profile' => 'Profil', - 'public_url' => 'Açık link', - 'read' => 'Okuma', - 'rename' => 'Yeniden adlandır', - 'required' => 'Gerekli', - 'return_to_list' => 'Listeye dön', - 'route' => 'Rota', - 'save' => 'Kaydet', - 'search' => 'Bul', - 'select_all' => 'Tümünü seç', - 'settings' => 'Ayarlar', - 'showing_entries' => ':from ile :to arasındaki :all kayıttan göstriliyor | :from ile :to arasındaki :all kayıtlar göstriliyor', - 'submit' => 'Gönder', + 'action' => 'İşlem', + 'actions' => 'İşlemler', + 'add' => 'Ekle', + 'add_folder' => 'Klasör ekle', + 'add_new' => 'Yeni Ekle', + 'all_done' => 'Hepsi tamam', + 'are_you_sure' => 'Emin misin', + 'are_you_sure_delete' => 'Silmek istediğinden emin misin', + 'auto_increment' => 'Otomatik artan', + 'browse' => 'Gözden geçirmek', + 'builder' => 'Kurucu', + 'cancel' => 'İptal', + 'choose_type' => 'Tip seçin', + 'click_here' => 'Buraya tıkla', + 'close' => 'Kapat', + 'compass' => 'Sınır', + 'created_at' => 'Oluşturma zamanı', + 'custom' => 'Özel', + 'dashboard' => 'Yönetim', + 'database' => 'Veritabanı', + 'default' => 'Varsayılan', + 'delete' => 'Sil', + 'delete_confirm' => 'Evet , sil !', + 'delete_question' => 'Silmek istediğinden emin misin', + 'delete_this_confirm' => 'Evet , bunu sil !', + 'deselect_all' => 'Tüm seçimi kaldır', + 'download' => 'İndir', + 'edit' => 'Düzenle', + 'email' => 'E-mail', + 'error_deleting' => 'Maalesef bunu silmek için bir sorun oluştu', + 'exception' => 'İstisna', + 'featured' => 'Öne Çıkan', + 'field_does_not_exist' => 'Alan bulunamadı', + 'how_to_use' => 'Nasıl kullanılır', + 'index' => 'İndeks', + 'internal_error' => 'İç hata', + 'items' => 'Eşya(lar)', + 'keep_sidebar_open' => 'Yarr! Bağları bırak! (ve yan menüyü açık tut)', + 'key' => 'Anahtar', + 'last_modified' => 'Son güncellenem', + 'length' => 'Uzunluk', + 'login' => 'Giriş', + 'media' => 'Medya', + 'menu_builder' => 'Menu kurucusu', + 'move' => 'Hareket', + 'name' => 'İsim', + 'new' => 'New', + 'no' => 'Hayır', + 'no_thanks' => 'Hayır teşekkürler', + 'not_null' => 'Boş değil', + 'options' => 'Seçenekler', + 'password' => 'Şifre', + 'permissions' => 'İzinler', + 'profile' => 'Profil', + 'public_url' => 'Açık link', + 'read' => 'Okuma', + 'rename' => 'Yeniden adlandır', + 'required' => 'Gerekli', + 'return_to_list' => 'Listeye dön', + 'route' => 'Rota', + 'save' => 'Kaydet', + 'search' => 'Bul', + 'select_all' => 'Tümünü seç', + 'settings' => 'Ayarlar', + 'showing_entries' => ':from ile :to arasındaki :all kayıttan göstriliyor | :from ile :to arasındaki :all kayıtlar göstriliyor', + 'submit' => 'Gönder', 'successfully_added_new' => 'Başarılı eklendi', - 'successfully_deleted' => 'Başarılı dilindi', - 'successfully_updated' => 'Başarılı güncellendi', - 'timestamp' => 'Zaman alanı', - 'title' => 'Başlık', - 'type' => 'Tip', - 'unsigned' => 'İmzasız', - 'unstick_sidebar' => 'Sidebarı açık tut', - 'update' => 'güncelle', - 'update_failed' => 'Alan güncellendi', - 'upload' => 'Yükle', - 'url' => 'Link', - 'view' => 'Görünüm', - 'viewing' => 'Görme', - 'yes' => 'Evet', - 'yes_please' => 'Evet, lütfen', + 'successfully_deleted' => 'Başarılı dilindi', + 'successfully_updated' => 'Başarılı güncellendi', + 'timestamp' => 'Zaman alanı', + 'title' => 'Başlık', + 'type' => 'Tip', + 'unsigned' => 'İmzasız', + 'unstick_sidebar' => 'Sidebarı açık tut', + 'update' => 'güncelle', + 'update_failed' => 'Alan güncellendi', + 'upload' => 'Yükle', + 'url' => 'Link', + 'view' => 'Görünüm', + 'viewing' => 'Görme', + 'yes' => 'Evet', + 'yes_please' => 'Evet, lütfen', ], 'login' => [ - 'loggingin' => 'Giriş yap', + 'loggingin' => 'Giriş yap', 'signin_below' => ' Below: oturum aç', - 'welcome' => "Voyager a hoş geldiniz , Laravel'in aranan yönetim paneli", + 'welcome' => "Voyager a hoş geldiniz , Laravel'in aranan yönetim paneli", ], 'profile' => [ - 'avatar' => 'Avatar', - 'edit' => 'Profilimi düzenle', - 'edit_user' => 'Kullanıcıyı düzenle', - 'password' => 'Şifre', + 'avatar' => 'Avatar', + 'edit' => 'Profilimi düzenle', + 'edit_user' => 'Kullanıcıyı düzenle', + 'password' => 'Şifre', 'password_hint' => 'Aynı şifre ise boş bırakın', - 'role' => 'Rol', - 'user_role' => 'Kullanıcı Rolü', + 'role' => 'Rol', + 'user_role' => 'Kullanıcı Rolü', ], 'settings' => [ - 'usage_help' => 'Her ayarın değerini sitenizdeki herhangi bir yerinden çağırabilirisiniz', - 'save' => 'Ayarları Kaydet', - 'new' => 'Yeni Ayarlar', - 'help_name' => 'Ayar Adı ex: Yönetici paneli', - 'help_key' => 'Ayar anahtarı ex: yonetici_paneli', - 'help_option' => '(optional, only applies to certain types like dropdown box or radio button)', - 'add_new' => 'Yeni Ayar ekle', - 'delete_question' => ' :setting Bu ayarı silmek istediğinden emin misin?', - 'delete_confirm' => 'Evet , Bu Ayarı Sil', + 'usage_help' => 'Her ayarın değerini sitenizdeki herhangi bir yerinden çağırabilirisiniz', + 'save' => 'Ayarları Kaydet', + 'new' => 'Yeni Ayarlar', + 'help_name' => 'Ayar Adı ex: Yönetici paneli', + 'help_key' => 'Ayar anahtarı ex: yonetici_paneli', + 'help_option' => '(optional, only applies to certain types like dropdown box or radio button)', + 'add_new' => 'Yeni Ayar ekle', + 'delete_question' => ' :setting Bu ayarı silmek istediğinden emin misin?', + 'delete_confirm' => 'Evet , Bu Ayarı Sil', 'successfully_created' => 'Başarılı Ayar Oluşturuldu', - 'successfully_saved' => 'Başarılı Ayar kaydedildi ', + 'successfully_saved' => 'Başarılı Ayar kaydedildi ', 'successfully_deleted' => 'Başarılı Ayar silindi ', - 'already_at_top' => 'Zaten Listenin en üstünde', - 'already_at_bottom' => 'Zaten listenin en altında', - 'moved_order_up' => ' :name ayarı yukarı taşındı', - 'moved_order_down' => ' :name ayarı aşağı taşındı ', + 'already_at_top' => 'Zaten Listenin en üstünde', + 'already_at_bottom' => 'Zaten listenin en altında', + 'moved_order_up' => ' :name ayarı yukarı taşındı', + 'moved_order_down' => ' :name ayarı aşağı taşındı ', 'successfully_removed' => ':name başarılı bir şekilde değeri silindi', - 'group_general' => 'Genel', - 'group_admin' => 'Admin', - 'group_site' => 'Site', - 'group' => 'Grop', - 'help_group' => 'Ayarların atandığı grup', + 'group_general' => 'Genel', + 'group_admin' => 'Admin', + 'group_site' => 'Site', + 'group' => 'Grop', + 'help_group' => 'Ayarların atandığı grup', ], 'media' => [ - 'add_new_folder' => 'Yeni dosya ekle', - 'audio_support' => 'tarıyıcın ses dosyası desteklemiyor.', - 'create_new_folder' => 'Yeni dosya oluştur', + 'add_new_folder' => 'Yeni dosya ekle', + 'audio_support' => 'tarıyıcın ses dosyası desteklemiyor.', + 'create_new_folder' => 'Yeni dosya oluştur', 'delete_folder_question' => 'Bu dosyayı silmek içindekileride silmene neden olcak', - 'destination_folder' => 'Dosya konumu', - 'drag_drop_info' => 'Sürükle bırakla hızlıca resim yükle', - 'error_already_exists' => 'Malesef dosya/dizin ile aynı isimde bulunan bir kayıt var', - 'error_creating_dir' => 'Malesef dizin oluşturuken bir şeyler yolunda girmedi, '.'Lütfen izinlerinizi kontrol ediniz', - 'error_deleting_file' => 'Bu dosyayı silerken bir sorun oluştu, lütfen izinlerinizi kontrol ediniz ', - 'error_deleting_folder' => 'Malesef bu dizini silerken bir sorun oluştur, lütfen izinlerinizi kontrol ediniz', - 'error_may_exist' => 'Malesef dosya/dizin ile aynı isimde bulunan bir kayıt olabilir lütfen ismini değiştirn', - 'error_moving' => 'Bu dosya/dizini taşırken bir sorun oluştu , lütfen doğru izinlerin olduğuna emin olun', - 'error_uploading' => 'Yükleme hatası: Unknown bilinmeyen bir hata oluştur', - 'folder_exists_already' => 'Malesef bu dizinden var ama isterseniz silip tekrar oluşturabilirsiniz ', - 'image_does_not_exist' => 'Resim bulanamadı', - 'image_removed' => 'Resim silindi', - 'library' => 'Medya silindi', - 'loading' => 'Medya dosyanızı bekleyin', - 'move_file_folder' => 'Dosya/Dizin taşı', - 'new_file_folder' => 'Yeni Dosya/Dizin ismi', - 'new_folder_name' => 'Yeni dizin ismi', - 'no_files_here' => 'Hiç dosya bulunamadı', - 'no_files_in_folder' => 'Bu klasörde hiç dosya bulunamadı', - 'nothing_selected' => 'Hiçbir Dosya/Dizin seçilmedi', - 'rename_file_folder' => 'yeniden adlanadır Dosya/Dizin', - 'success_uploaded_file' => 'Başarı bir şekilde yeni dosya yüklendi', - 'success_uploading' => 'Resim başarılı bir şekilde yüklendi', - 'uploading_wrong_type' => 'Yükleme hatasu: Desteklenmeyen dosya formatı veya çok büyük dosya!', - 'video_support' => 'Tarayıcı video etiketini desteklemiyor ', + 'destination_folder' => 'Dosya konumu', + 'drag_drop_info' => 'Sürükle bırakla hızlıca resim yükle', + 'error_already_exists' => 'Malesef dosya/dizin ile aynı isimde bulunan bir kayıt var', + 'error_creating_dir' => 'Malesef dizin oluşturuken bir şeyler yolunda girmedi, '.'Lütfen izinlerinizi kontrol ediniz', + 'error_deleting_file' => 'Bu dosyayı silerken bir sorun oluştu, lütfen izinlerinizi kontrol ediniz ', + 'error_deleting_folder' => 'Malesef bu dizini silerken bir sorun oluştur, lütfen izinlerinizi kontrol ediniz', + 'error_may_exist' => 'Malesef dosya/dizin ile aynı isimde bulunan bir kayıt olabilir lütfen ismini değiştirn', + 'error_moving' => 'Bu dosya/dizini taşırken bir sorun oluştu , lütfen doğru izinlerin olduğuna emin olun', + 'error_uploading' => 'Yükleme hatası: Unknown bilinmeyen bir hata oluştur', + 'folder_exists_already' => 'Malesef bu dizinden var ama isterseniz silip tekrar oluşturabilirsiniz ', + 'image_does_not_exist' => 'Resim bulanamadı', + 'image_removed' => 'Resim silindi', + 'library' => 'Medya silindi', + 'loading' => 'Medya dosyanızı bekleyin', + 'move_file_folder' => 'Dosya/Dizin taşı', + 'new_file_folder' => 'Yeni Dosya/Dizin ismi', + 'new_folder_name' => 'Yeni dizin ismi', + 'no_files_here' => 'Hiç dosya bulunamadı', + 'no_files_in_folder' => 'Bu klasörde hiç dosya bulunamadı', + 'nothing_selected' => 'Hiçbir Dosya/Dizin seçilmedi', + 'rename_file_folder' => 'yeniden adlanadır Dosya/Dizin', + 'success_uploaded_file' => 'Başarı bir şekilde yeni dosya yüklendi', + 'success_uploading' => 'Resim başarılı bir şekilde yüklendi', + 'uploading_wrong_type' => 'Yükleme hatasu: Desteklenmeyen dosya formatı veya çok büyük dosya!', + 'video_support' => 'Tarayıcı video etiketini desteklemiyor ', ], 'menu_builder' => [ - 'color' => 'Renkler RGB veya hex (tercihen)', - 'color_ph' => 'Renk (örn. #ffffff veya rgb(255, 255, 255)', - 'create_new_item' => 'Yeni bir kayıt oluşturun', - 'delete_item_confirm' => 'Evet , Bu menüyü sil', + 'color' => 'Renkler RGB veya hex (tercihen)', + 'color_ph' => 'Renk (örn. #ffffff veya rgb(255, 255, 255)', + 'create_new_item' => 'Yeni bir kayıt oluşturun', + 'delete_item_confirm' => 'Evet , Bu menüyü sil', 'delete_item_question' => 'Bu menü kaydını silmek istediğinden emin misin ?', - 'drag_drop_info' => 'Sürükle ve bırak ile menüyü ayarlayın', - 'dynamic_route' => 'Dinamik rota', - 'edit_item' => 'Menüyü düzenle', - 'icon_class' => 'Font Icon sınıfları menü için (Use a', - 'icon_class2' => 'Voyager Font sınıfları)', - 'icon_class_ph' => 'Icon sınıfları (tercihen)', - 'item_route' => 'Menü için rota', - 'item_title' => 'Menü başlığı', - 'link_type' => 'Link tipi', - 'new_menu_item' => 'Yeni menü kaydı', - 'open_in' => 'Açılış hedefi', - 'open_new' => 'Yeni Tab/Ekran', - 'open_same' => 'Aynı Tab/Ekran', - 'route_parameter' => 'Rota parametresi', - 'static_url' => 'Statik URL', + 'drag_drop_info' => 'Sürükle ve bırak ile menüyü ayarlayın', + 'dynamic_route' => 'Dinamik rota', + 'edit_item' => 'Menüyü düzenle', + 'icon_class' => 'Font Icon sınıfları menü için (Use a', + 'icon_class2' => 'Voyager Font sınıfları)', + 'icon_class_ph' => 'Icon sınıfları (tercihen)', + 'item_route' => 'Menü için rota', + 'item_title' => 'Menü başlığı', + 'link_type' => 'Link tipi', + 'new_menu_item' => 'Yeni menü kaydı', + 'open_in' => 'Açılış hedefi', + 'open_new' => 'Yeni Tab/Ekran', + 'open_same' => 'Aynı Tab/Ekran', + 'route_parameter' => 'Rota parametresi', + 'static_url' => 'Statik URL', 'successfully_created' => 'Menü kaydı başarılı bir şekilde kaydoldu', 'successfully_deleted' => 'Menü kaydı başarılı bir şekilde silindi', 'successfully_updated' => 'Menü kaydı başarılı bir şekilde güncellendi', - 'updated_order' => 'Menü kaydı başarılı bir şekilde sıralandı', - 'url' => 'Menü kaydının linki', - 'usage_hint' => 'Bu menüyü istediğiniz yerde çağra bilirsiniz|Şu şekilde '. + 'updated_order' => 'Menü kaydı başarılı bir şekilde sıralandı', + 'url' => 'Menü kaydının linki', + 'usage_hint' => 'Bu menüyü istediğiniz yerde çağra bilirsiniz|Şu şekilde '. 'Bu menüyü sitenin istediğiniz yerinde çağırmak için', ], 'post' => [ - 'category' => 'Yazı kategorisi', - 'content' => 'Yazı içeriği', - 'details' => 'Yazı detayı', - 'excerpt' => 'Alıntı Yazının kısa açıklaması', - 'image' => 'Yazı resmi', + 'category' => 'Yazı kategorisi', + 'content' => 'Yazı içeriği', + 'details' => 'Yazı detayı', + 'excerpt' => 'Alıntı Yazının kısa açıklaması', + 'image' => 'Yazı resmi', 'meta_description' => 'Meta Açıklaması', - 'meta_keywords' => 'Meta Anahtar kelimesi', - 'new' => 'Yeni Yazı Oluştur', - 'seo_content' => 'SEO içeriği', - 'seo_title' => 'Seo başlığı', - 'slug' => 'URL link', - 'status' => 'Yazı durumu', - 'status_draft' => 'taslak', - 'status_pending' => 'bekliyor', + 'meta_keywords' => 'Meta Anahtar kelimesi', + 'new' => 'Yeni Yazı Oluştur', + 'seo_content' => 'SEO içeriği', + 'seo_title' => 'Seo başlığı', + 'slug' => 'URL link', + 'status' => 'Yazı durumu', + 'status_draft' => 'taslak', + 'status_pending' => 'bekliyor', 'status_published' => 'yayınlandı', - 'title' => 'Yazı başlığı', - 'title_sub' => 'Yazınız için başlık', - 'update' => 'Yazıyı güncelle', + 'title' => 'Yazı başlığı', + 'title_sub' => 'Yazınız için başlık', + 'update' => 'Yazıyı güncelle', ], 'database' => [ - 'add_bread' => 'Bu tabloya BREAD ekle', - 'add_new_column' => 'Yeni kolon ekle', - 'add_softdeletes' => 'Yazılımsal silme kolonu ekle(soft delete)', - 'add_timestamps' => 'Zaman kolonları ekle(created_at , updated_at)', - 'already_exists' => 'Bu kolon var', - 'already_exists_table' => 'Tablo :table zaten var', - 'bread_crud_actions' => 'BREAD/CRUD işlemleri', - 'bread_info' => 'BREAD bilgisi', - 'column' => 'Kolon', - 'composite_warning' => 'Warning: bu sütun, bileşik bir dizinin parçasıdır', - 'controller_name' => 'Kontrol Adı', - 'controller_name_hint' => 'örn. PageController, eğer boş bırakırsanı BREAD kontrolü kullanır', - 'create_bread_for_table' => ':table tablosu için BREAD oluştur', - 'create_migration' => 'Bu tablo için migrasyon oluşturulsun mu ?', - 'create_model_table' => 'bu tablo için model oluşturulsun mu ?', - 'create_new_table' => 'Yeni tablo oluştur', - 'create_your_new_table' => 'Kendine yeni tablo oluştur', - 'default' => 'Varsayılan', - 'delete_bread' => 'BREAD sil', + 'add_bread' => 'Bu tabloya BREAD ekle', + 'add_new_column' => 'Yeni kolon ekle', + 'add_softdeletes' => 'Yazılımsal silme kolonu ekle(soft delete)', + 'add_timestamps' => 'Zaman kolonları ekle(created_at , updated_at)', + 'already_exists' => 'Bu kolon var', + 'already_exists_table' => 'Tablo :table zaten var', + 'bread_crud_actions' => 'BREAD/CRUD işlemleri', + 'bread_info' => 'BREAD bilgisi', + 'column' => 'Kolon', + 'composite_warning' => 'Warning: bu sütun, bileşik bir dizinin parçasıdır', + 'controller_name' => 'Kontrol Adı', + 'controller_name_hint' => 'örn. PageController, eğer boş bırakırsanı BREAD kontrolü kullanır', + 'create_bread_for_table' => ':table tablosu için BREAD oluştur', + 'create_migration' => 'Bu tablo için migrasyon oluşturulsun mu ?', + 'create_model_table' => 'bu tablo için model oluşturulsun mu ?', + 'create_new_table' => 'Yeni tablo oluştur', + 'create_your_new_table' => 'Kendine yeni tablo oluştur', + 'default' => 'Varsayılan', + 'delete_bread' => 'BREAD sil', 'delete_bread_before_table' => "Lütfen tabloyu silmeden önce bu tablodaki BREAD'i kaldırdığınızdan emin olun.", - 'delete_table_bread_conf' => "Evet,BREAD'i sil", - 'delete_table_bread_quest' => ":table tablosunda BREAD'i silmek istediğinizden emin misiniz ? ", - 'delete_table_confirm' => 'Evet bu tabloyu sil', - 'delete_table_question' => ':table tablosunu silmek istediğinizden emin misiniz ? ', - 'description' => 'Açıklama', - 'display_name' => 'Görünüm adı', - 'display_name_plural' => 'Görünüm adı (Çoğul)', - 'display_name_singular' => 'Görünüm adı (Tekil)', - 'edit_bread' => 'BREAD düzenle', - 'edit_bread_for_table' => ':table tablosu için BREAD düzenle', - 'edit_rows' => 'Aşağıdaki :table tablolarının satırlarını düzenleyin:', - 'edit_table' => 'Aşağıdaki :table tablolarını düzenleyin', - 'edit_table_not_exist' => 'Düzenlemek istediğin tablo mevcut değil', - 'error_creating_bread' => "Maalesef, bu BREAD'i oluşturmakta bir sorun olabilir gibi görünüyor", - 'error_removing_bread' => "Maalesef, bu BREAD'i düzenlemekte bir sorun olabilir gibi görünüyor", - 'error_updating_bread' => "Maalesef, bu BREAD'i güncellemekde bir sorun olabilir gibi görünüyor", - 'extra' => 'Extra', - 'field' => 'Alan', - 'field_safe_failed' => ':field alan kaydedilirken hata oluştur, veri tabanını geri sarıyorum', - 'generate_permissions' => 'İzinleri oluştur', - 'icon_class' => 'Bu tablo için İcon', - 'icon_hint' => 'İcon (isteğe bağlı) kullanın', - 'icon_hint2' => 'voyager ön yüz sınıfı', - 'index' => 'İNDEKS', - 'input_type' => 'Giriş tipi', - 'key' => 'Anahtar', - 'model_class' => 'Model Sınıf Adı', - 'model_name' => 'Model Adı', - 'model_name_ph' => 'ex. \App\Models\User, Eğer boş ise tablo adını deneyin', - 'name_warning' => 'Lütfen indeks eklemden önce kolon adı belirleyin', - 'no_composites_warning' => 'This table has composite indexes. Please note that they are not supported '. + 'delete_table_bread_conf' => "Evet,BREAD'i sil", + 'delete_table_bread_quest' => ":table tablosunda BREAD'i silmek istediğinizden emin misiniz ? ", + 'delete_table_confirm' => 'Evet bu tabloyu sil', + 'delete_table_question' => ':table tablosunu silmek istediğinizden emin misiniz ? ', + 'description' => 'Açıklama', + 'display_name' => 'Görünüm adı', + 'display_name_plural' => 'Görünüm adı (Çoğul)', + 'display_name_singular' => 'Görünüm adı (Tekil)', + 'edit_bread' => 'BREAD düzenle', + 'edit_bread_for_table' => ':table tablosu için BREAD düzenle', + 'edit_rows' => 'Aşağıdaki :table tablolarının satırlarını düzenleyin:', + 'edit_table' => 'Aşağıdaki :table tablolarını düzenleyin', + 'edit_table_not_exist' => 'Düzenlemek istediğin tablo mevcut değil', + 'error_creating_bread' => "Maalesef, bu BREAD'i oluşturmakta bir sorun olabilir gibi görünüyor", + 'error_removing_bread' => "Maalesef, bu BREAD'i düzenlemekte bir sorun olabilir gibi görünüyor", + 'error_updating_bread' => "Maalesef, bu BREAD'i güncellemekde bir sorun olabilir gibi görünüyor", + 'extra' => 'Extra', + 'field' => 'Alan', + 'field_safe_failed' => ':field alan kaydedilirken hata oluştur, veri tabanını geri sarıyorum', + 'generate_permissions' => 'İzinleri oluştur', + 'icon_class' => 'Bu tablo için İcon', + 'icon_hint' => 'İcon (isteğe bağlı) kullanın', + 'icon_hint2' => 'voyager ön yüz sınıfı', + 'index' => 'İNDEKS', + 'input_type' => 'Giriş tipi', + 'key' => 'Anahtar', + 'model_class' => 'Model Sınıf Adı', + 'model_name' => 'Model Adı', + 'model_name_ph' => 'ex. \App\Models\User, Eğer boş ise tablo adını deneyin', + 'name_warning' => 'Lütfen indeks eklemden önce kolon adı belirleyin', + 'no_composites_warning' => 'This table has composite indexes. Please note that they are not supported '. 'at the moment. Be careful when trying to add/remove indexes.', - 'null' => 'Boş', - 'optional_details' => 'İsteğe Bağlı Ayrıntılar', - 'primary' => 'BİRİNCİL', - 'server_pagination' => 'Sunucu-taraflı sayfalama', - 'success_create_table' => 'Başarılı tablo oluşturuldu :table ', + 'null' => 'Boş', + 'optional_details' => 'İsteğe Bağlı Ayrıntılar', + 'primary' => 'BİRİNCİL', + 'server_pagination' => 'Sunucu-taraflı sayfalama', + 'success_create_table' => 'Başarılı tablo oluşturuldu :table ', 'success_created_bread' => 'Başarılı yeni BREAD oluşturuldu', - 'success_delete_table' => 'Başarılı tablo silindi :table table', - 'success_remove_bread' => 'Başarılı silindi BREAD şurdan :datatype', - 'success_update_bread' => 'Başarılı güncellendi :datatype BREAD', - 'success_update_table' => 'Başarılı tablo güncellendi :table table', - 'table_actions' => 'Tablo işlemleri', - 'table_columns' => 'Tablo kolanları', - 'table_has_index' => 'Tablo zaten birincil anahtarı var.', - 'table_name' => 'Tablo Adı', - 'table_no_columns' => 'Tabloda hiç kolan bulunamadı...', - 'type' => 'Tip', - 'type_not_supported' => 'Bu tip desteklenöiyor', - 'unique' => 'BENZERSİZ', - 'unknown_type' => 'Bilinmeyen Tip', - 'update_table' => 'Tabloyu güncelle', - 'url_slug' => 'Link yazısı (benzersiz olmalı)', - 'url_slug_ph' => 'Link yazısı (ex. gonderi)', - 'visibility' => 'Görünür', + 'success_delete_table' => 'Başarılı tablo silindi :table table', + 'success_remove_bread' => 'Başarılı silindi BREAD şurdan :datatype', + 'success_update_bread' => 'Başarılı güncellendi :datatype BREAD', + 'success_update_table' => 'Başarılı tablo güncellendi :table table', + 'table_actions' => 'Tablo işlemleri', + 'table_columns' => 'Tablo kolanları', + 'table_has_index' => 'Tablo zaten birincil anahtarı var.', + 'table_name' => 'Tablo Adı', + 'table_no_columns' => 'Tabloda hiç kolan bulunamadı...', + 'type' => 'Tip', + 'type_not_supported' => 'Bu tip desteklenöiyor', + 'unique' => 'BENZERSİZ', + 'unknown_type' => 'Bilinmeyen Tip', + 'update_table' => 'Tabloyu güncelle', + 'url_slug' => 'Link yazısı (benzersiz olmalı)', + 'url_slug_ph' => 'Link yazısı (ex. gonderi)', + 'visibility' => 'Görünür', ], 'dimmer' => [ - 'page' => 'Sayfa|Sayfalar', + 'page' => 'Sayfa|Sayfalar', 'page_link_text' => 'Tüm sayfaları Görüntüle', - 'page_text' => ' :count kadar :string veritabanınızda. Tıklayarak tüm sayfaları görün', - 'post' => 'Gönderi|Gönderiler', + 'page_text' => ' :count kadar :string veritabanınızda. Tıklayarak tüm sayfaları görün', + 'post' => 'Gönderi|Gönderiler', 'post_link_text' => 'Tüm Gönderileri Görüntüle', - 'post_text' => ':count kadar :string veritabanınızda. Tıklayarak tüm Gönderileri görün', - 'user' => 'Kullanıcı|Kullanıcılar', + 'post_text' => ':count kadar :string veritabanınızda. Tıklayarak tüm Gönderileri görün', + 'user' => 'Kullanıcı|Kullanıcılar', 'user_link_text' => 'Tüm Kullanıcları Görüntüle', - 'user_text' => ':count kadar :string veritabanınızda. Tıklayarak tüm kullanıcıları görün', + 'user_text' => ':count kadar :string veritabanınızda. Tıklayarak tüm kullanıcıları görün', ], 'form' => [ - 'field_password_keep' => 'Aynı kalamsı için boş bırakın', + 'field_password_keep' => 'Aynı kalamsı için boş bırakın', 'field_select_dd_relationship' => 'Şurada uygun ilişkiyi kurduğunuzdan emin olun. :method methodu ile '. ':class sınıfı içinde.', - 'type_checkbox' => 'Çoklu seçim kutuları', - 'type_codeeditor' => 'Kod Editörü', - 'type_file' => 'Dosya', - 'type_image' => 'Resim', - 'type_radiobutton' => 'Radio kutular', - 'type_richtextbox' => 'Metin Editörü', + 'type_checkbox' => 'Çoklu seçim kutuları', + 'type_codeeditor' => 'Kod Editörü', + 'type_file' => 'Dosya', + 'type_image' => 'Resim', + 'type_radiobutton' => 'Radio kutular', + 'type_richtextbox' => 'Metin Editörü', 'type_selectdropdown' => 'Seçim Kutusu', - 'type_textarea' => 'Metin Alanı', - 'type_textbox' => 'metin Kutusu', + 'type_textarea' => 'Metin Alanı', + 'type_textbox' => 'metin Kutusu', ], // DataTable translations from: https://github.com/DataTables/Plugins/tree/master/i18n 'datatable' => [ - 'sEmptyTable' => 'Tablo yok', - 'sInfo' => '_START_ ile _END_ arasında _TOTAL_ kadar kayıt görüntülendi', - 'sInfoEmpty' => '0 ile 0 arasında 0 kadar kayıt görüntülendi', - 'sInfoFiltered' => '( _MAX_ toplam bu kadar kayıt filtrelendi)', - 'sInfoPostFix' => '', - 'sInfoThousands' => ',', - 'sLengthMenu' => ' _MENU_ kayıtlarını göster', + 'sEmptyTable' => 'Tablo yok', + 'sInfo' => '_START_ ile _END_ arasında _TOTAL_ kadar kayıt görüntülendi', + 'sInfoEmpty' => '0 ile 0 arasında 0 kadar kayıt görüntülendi', + 'sInfoFiltered' => '( _MAX_ toplam bu kadar kayıt filtrelendi)', + 'sInfoPostFix' => '', + 'sInfoThousands' => ',', + 'sLengthMenu' => ' _MENU_ kayıtlarını göster', 'sLoadingRecords' => 'Yükleniyor...', - 'sProcessing' => 'İşleniyor...', - 'sSearch' => 'Search:', - 'sZeroRecords' => 'Eşleşen bir kayıt bulunmamakta', - 'oPaginate' => [ - 'sFirst' => 'İlk', - 'sLast' => 'Son', - 'sNext' => 'İleri', + 'sProcessing' => 'İşleniyor...', + 'sSearch' => 'Search:', + 'sZeroRecords' => 'Eşleşen bir kayıt bulunmamakta', + 'oPaginate' => [ + 'sFirst' => 'İlk', + 'sLast' => 'Son', + 'sNext' => 'İleri', 'sPrevious' => 'Geri', ], 'oAria' => [ - 'sSortAscending' => ': activate artana göre sırala', + 'sSortAscending' => ': activate artana göre sırala', 'sSortDescending' => ': activate azalana göre sırala', ], ], 'theme' => [ - 'footer_copyright' => ' ile yapıldı', + 'footer_copyright' => ' ile yapıldı', 'footer_copyright2' => 'Rom ve daha da fazla romla yapılmış', ], 'json' => [ - 'invalid' => 'Geçersiz Json', - 'invalid_message' => 'Doğru olmıyan bir JSON gibi görünüyor', - 'valid' => 'Doğru Json', + 'invalid' => 'Geçersiz Json', + 'invalid_message' => 'Doğru olmıyan bir JSON gibi görünüyor', + 'valid' => 'Doğru Json', 'validation_errors' => 'Doğrulama hatası', ], 'analytics' => [ - 'by_pageview' => 'Sayfa görüntülenmeye göre', - 'by_sessions' => 'Oturuma göre', - 'by_users' => 'Kullanıcıya göre', + 'by_pageview' => 'Sayfa görüntülenmeye göre', + 'by_sessions' => 'Oturuma göre', + 'by_users' => 'Kullanıcıya göre', 'no_client_id' => 'To view analytics you\'ll need to get a google analytics client id and '. 'add it to your settings for the key google_analytics_client_id'. '. Get your key in your Google developer console:', - 'set_view' => 'Görünüm seçin', - 'this_vs_last_week' => 'Bu Hafta vs Geçen Hafta', - 'this_vs_last_year' => 'Bu Yıl vs Geçen Yıl', - 'top_browsers' => 'En çok girilen tarayıcı türü', - 'top_countries' => 'En çok girilen ülke', + 'set_view' => 'Görünüm seçin', + 'this_vs_last_week' => 'Bu Hafta vs Geçen Hafta', + 'this_vs_last_year' => 'Bu Yıl vs Geçen Yıl', + 'top_browsers' => 'En çok girilen tarayıcı türü', + 'top_countries' => 'En çok girilen ülke', 'various_visualizations' => 'Çeşitli görünümler', ], 'error' => [ - 'symlink_created_text' => 'Kayıp depolama alanı sembolik bağlantısı sizin için onardık', + 'symlink_created_text' => 'Kayıp depolama alanı sembolik bağlantısı sizin için onardık', 'symlink_created_title' => 'Kayıp depolama alanı sembolik bağlantısı oluşturuldu', - 'symlink_failed_text' => 'Kayıp depolama alanı sembolik bağlantısını sizin için oluştururken sorun alıyoruz'. + 'symlink_failed_text' => 'Kayıp depolama alanı sembolik bağlantısını sizin için oluştururken sorun alıyoruz'. 'Sunucunuz bunu desteklemiyor görünüyor.', - 'symlink_failed_title' => 'Depolama alanı sembolik bağlantısı oluşturulamadı', + 'symlink_failed_title' => 'Depolama alanı sembolik bağlantısı oluşturulamadı', 'symlink_missing_button' => 'Düzelt', - 'symlink_missing_text' => 'Depolama alanı sembolik bağlantısı bulamadık. Şunun yüzünden olabilir '. + 'symlink_missing_text' => 'Depolama alanı sembolik bağlantısı bulamadık. Şunun yüzünden olabilir '. 'Medya dosyalarını tarayıcıdan yüklerken', 'symlink_missing_title' => 'Depolama alanı sembolik bağlantısı eksik', ], diff --git a/lang/uk/voyager.php b/lang/uk/voyager.php index 4ab6e7cd5..d8cc34927 100644 --- a/lang/uk/voyager.php +++ b/lang/uk/voyager.php @@ -9,386 +9,386 @@ ], 'generic' => [ - 'action' => 'Дія', - 'actions' => 'Дії', - 'add' => 'Додати', - 'add_folder' => 'Додати папку', - 'add_new' => 'Додати', - 'all_done' => 'Готово', - 'are_you_sure' => 'Ви впевнені', - 'are_you_sure_delete' => 'Ви дійсно хочете видалити', - 'auto_increment' => 'Авто інкремент', - 'browse' => 'Переглянути список', - 'builder' => 'Конструктор', - 'bulk_delete' => 'Видалити відмічені', - 'bulk_delete_confirm' => 'Так, видалити це', - 'bulk_delete_nothing' => 'Ви нічого не обрали для видалення!', - 'cancel' => 'Відміна', - 'choose_type' => 'Виберіть тип поля', - 'click_here' => 'Натисніть тут', - 'close' => 'Закрити', - 'compass' => 'Компас', - 'created_at' => 'Дата створення', - 'custom' => 'Користувацька категорія', - 'dashboard' => 'Панель управління', - 'database' => 'База даних', - 'default' => 'За замовчуванням', - 'delete' => 'Видалити', - 'delete_confirm' => 'Так, видалити!', - 'delete_question' => 'Ви дійсно хотите видалити це?', - 'delete_this_confirm' => 'Так, видалити це', - 'deselect_all' => 'Скасувати видалення', - 'download' => 'Завантаження', - 'edit' => 'Редагувати', - 'email' => 'Електронна пошта', - 'error_deleting' => 'Під час видалення виникла помилка', - 'exception' => 'Виняток', - 'featured' => 'Рекомендуємий', - 'field_does_not_exist' => 'Поле не існує', - 'how_to_use' => 'Як використовувати', - 'index' => 'Індекс', - 'internal_error' => 'Внутрішня помилка', - 'items' => 'Елемент(и)', - 'keep_sidebar_open' => 'Розкривати панель', - 'key' => 'Ключ', - 'last_modified' => 'Остання зміна', - 'length' => 'Довжина', - 'login' => 'Вхід', - 'media' => 'Медіа', - 'menu_builder' => 'Конструктор меню', - 'move' => 'Перемістити', - 'name' => 'Назва', - 'new' => 'Новинка', - 'no' => 'Ні', - 'no_thanks' => 'Ні, дякую', - 'not_null' => 'Не Null', - 'options' => 'Параметри', - 'password' => 'Пароль', - 'permissions' => 'Права доступу', - 'profile' => 'Профіль', - 'public_url' => 'Загальнодоступна URL-адреса', - 'read' => 'Переглянути запис', - 'rename' => 'Перейменувати', - 'required' => 'Обов\'язковий', - 'return_to_list' => 'Повернутись до списку', - 'route' => 'Маршрут', - 'save' => 'Зберегти', - 'search' => 'Шукати', - 'select_all' => 'Вибрати все', - 'settings' => 'Налаштування', - 'showing_entries' => 'Показаний від :from до :to з :all запис|Показано від :from до :to з :all записів', - 'submit' => 'Зберегти', + 'action' => 'Дія', + 'actions' => 'Дії', + 'add' => 'Додати', + 'add_folder' => 'Додати папку', + 'add_new' => 'Додати', + 'all_done' => 'Готово', + 'are_you_sure' => 'Ви впевнені', + 'are_you_sure_delete' => 'Ви дійсно хочете видалити', + 'auto_increment' => 'Авто інкремент', + 'browse' => 'Переглянути список', + 'builder' => 'Конструктор', + 'bulk_delete' => 'Видалити відмічені', + 'bulk_delete_confirm' => 'Так, видалити це', + 'bulk_delete_nothing' => 'Ви нічого не обрали для видалення!', + 'cancel' => 'Відміна', + 'choose_type' => 'Виберіть тип поля', + 'click_here' => 'Натисніть тут', + 'close' => 'Закрити', + 'compass' => 'Компас', + 'created_at' => 'Дата створення', + 'custom' => 'Користувацька категорія', + 'dashboard' => 'Панель управління', + 'database' => 'База даних', + 'default' => 'За замовчуванням', + 'delete' => 'Видалити', + 'delete_confirm' => 'Так, видалити!', + 'delete_question' => 'Ви дійсно хотите видалити це?', + 'delete_this_confirm' => 'Так, видалити це', + 'deselect_all' => 'Скасувати видалення', + 'download' => 'Завантаження', + 'edit' => 'Редагувати', + 'email' => 'Електронна пошта', + 'error_deleting' => 'Під час видалення виникла помилка', + 'exception' => 'Виняток', + 'featured' => 'Рекомендуємий', + 'field_does_not_exist' => 'Поле не існує', + 'how_to_use' => 'Як використовувати', + 'index' => 'Індекс', + 'internal_error' => 'Внутрішня помилка', + 'items' => 'Елемент(и)', + 'keep_sidebar_open' => 'Розкривати панель', + 'key' => 'Ключ', + 'last_modified' => 'Остання зміна', + 'length' => 'Довжина', + 'login' => 'Вхід', + 'media' => 'Медіа', + 'menu_builder' => 'Конструктор меню', + 'move' => 'Перемістити', + 'name' => 'Назва', + 'new' => 'Новинка', + 'no' => 'Ні', + 'no_thanks' => 'Ні, дякую', + 'not_null' => 'Не Null', + 'options' => 'Параметри', + 'password' => 'Пароль', + 'permissions' => 'Права доступу', + 'profile' => 'Профіль', + 'public_url' => 'Загальнодоступна URL-адреса', + 'read' => 'Переглянути запис', + 'rename' => 'Перейменувати', + 'required' => 'Обов\'язковий', + 'return_to_list' => 'Повернутись до списку', + 'route' => 'Маршрут', + 'save' => 'Зберегти', + 'search' => 'Шукати', + 'select_all' => 'Вибрати все', + 'settings' => 'Налаштування', + 'showing_entries' => 'Показаний від :from до :to з :all запис|Показано від :from до :to з :all записів', + 'submit' => 'Зберегти', 'successfully_added_new' => 'Успішне додання', - 'successfully_deleted' => 'Успішне видалення', - 'successfully_updated' => 'Успішне оновлення', - 'timestamp' => 'Відмітка часу', - 'title' => 'Назва', - 'type' => 'Тип', - 'unsigned' => 'Unsigned', - 'unstick_sidebar' => 'Відкріпити бокову панель', - 'update' => 'Оновити', - 'update_failed' => 'Оновлення не вдалось', - 'upload' => 'Завантажити на сервер', - 'url' => 'URL', - 'view' => 'Переглянути', - 'viewing' => 'Перегляд', - 'yes' => 'Так', - 'yes_please' => 'Так, будь ласка', + 'successfully_deleted' => 'Успішне видалення', + 'successfully_updated' => 'Успішне оновлення', + 'timestamp' => 'Відмітка часу', + 'title' => 'Назва', + 'type' => 'Тип', + 'unsigned' => 'Unsigned', + 'unstick_sidebar' => 'Відкріпити бокову панель', + 'update' => 'Оновити', + 'update_failed' => 'Оновлення не вдалось', + 'upload' => 'Завантажити на сервер', + 'url' => 'URL', + 'view' => 'Переглянути', + 'viewing' => 'Перегляд', + 'yes' => 'Так', + 'yes_please' => 'Так, будь ласка', ], 'login' => [ - 'loggingin' => 'Вхід в систему', + 'loggingin' => 'Вхід в систему', 'signin_below' => 'Вхід тут:', - 'welcome' => 'Ласкаво просимо до Voyager. Панель управління, якої не вистачало в Laravel', + 'welcome' => 'Ласкаво просимо до Voyager. Панель управління, якої не вистачало в Laravel', ], 'profile' => [ - 'avatar' => 'Фото', - 'edit' => 'Налаштування профілю', - 'edit_user' => 'Змінити профіль', - 'password' => 'Пароль', + 'avatar' => 'Фото', + 'edit' => 'Налаштування профілю', + 'edit_user' => 'Змінити профіль', + 'password' => 'Пароль', 'password_hint' => 'Залиште порожнім, щоб не змінювати', - 'role' => 'Роль', - 'user_role' => 'Роль користувача', + 'role' => 'Роль', + 'user_role' => 'Роль користувача', ], 'settings' => [ - 'usage_help' => 'Для того, щоб отримати значення параметрів, використовуйте в шаблоні код ', - 'save' => 'Зберегти налаштування', - 'new' => 'Створити налаштування', - 'help_name' => 'Назва параметру (наприклад, Мій параметр)', - 'help_key' => 'Ключ параметру (наприклад, my_parametr)', - 'help_option' => '(необов\'язково, застосовується тільки до випадаючого списку чи радіо-кнопок)', - 'add_new' => 'Додати новий параметр', - 'delete_question' => 'Ви впевнені, що потрібно видалити параметр :setting?', - 'delete_confirm' => 'Так, видалити цей параметр', + 'usage_help' => 'Для того, щоб отримати значення параметрів, використовуйте в шаблоні код ', + 'save' => 'Зберегти налаштування', + 'new' => 'Створити налаштування', + 'help_name' => 'Назва параметру (наприклад, Мій параметр)', + 'help_key' => 'Ключ параметру (наприклад, my_parametr)', + 'help_option' => '(необов\'язково, застосовується тільки до випадаючого списку чи радіо-кнопок)', + 'add_new' => 'Додати новий параметр', + 'delete_question' => 'Ви впевнені, що потрібно видалити параметр :setting?', + 'delete_confirm' => 'Так, видалити цей параметр', 'successfully_created' => 'Параметри успішно створені', - 'successfully_saved' => 'Параметри успішно збережені', + 'successfully_saved' => 'Параметри успішно збережені', 'successfully_deleted' => 'Параметри успішно видалені', - 'already_at_top' => 'Вже розміщено вверху списку', - 'already_at_bottom' => 'Вже розміщено внизу списку', - 'moved_order_up' => 'Параметр :name переміщено догори', - 'moved_order_down' => 'Параметр :name переміщено донизу', + 'already_at_top' => 'Вже розміщено вверху списку', + 'already_at_bottom' => 'Вже розміщено внизу списку', + 'moved_order_up' => 'Параметр :name переміщено догори', + 'moved_order_down' => 'Параметр :name переміщено донизу', 'successfully_removed' => 'Успішно видалено значення параметру :name', - 'group_general' => 'Основне', - 'group_admin' => 'Адмін', - 'group_site' => 'Сайт', - 'group' => 'Група', - 'help_group' => 'Прив\'язати це налаштування до групи', + 'group_general' => 'Основне', + 'group_admin' => 'Адмін', + 'group_site' => 'Сайт', + 'group' => 'Група', + 'help_group' => 'Прив\'язати це налаштування до групи', ], 'media' => [ - 'add_new_folder' => 'Додати нову папку', - 'audio_support' => 'Ваш браузер не підтримує елемент audio.', - 'create_new_folder' => 'Створити нову папку', + 'add_new_folder' => 'Додати нову папку', + 'audio_support' => 'Ваш браузер не підтримує елемент audio.', + 'create_new_folder' => 'Створити нову папку', 'delete_folder_question' => 'Видалення папки призведе до видалення всього її вмісту.', - 'destination_folder' => 'Папка призначення', - 'drag_drop_info' => 'Перетягніть файли мишкою або натисніть на кнопку знизу для завантаження.', - 'error_already_exists' => 'Файл/папка з такою назвою вже існує в даному каталозі', - 'error_creating_dir' => 'Не вдалось створити папку: перевірте права доступу', - 'error_deleting_file' => 'Не вдалось видалити файл: перевірте права доступу', - 'error_deleting_folder' => 'Не вдалось видалити папку: перевірте права доступу', - 'error_may_exist' => 'Файл чи папка з такою назвою вже існує: виберіть іншу назву або видаліть існуючий файл!', - 'error_moving' => 'Не вдалось перемістити файл чи папку: перевірте права доступу.', - 'error_uploading' => 'Помилка завантаження: сталась невідома помилка!', - 'folder_exists_already' => 'Папка з такою назвою вже існує: видаліть її, якщо хочете створити нову з такою ж назвою.', - 'image_does_not_exist' => 'Зображення не існує', - 'image_removed' => 'Зображення видалено', - 'library' => 'Медіатека', - 'loading' => 'ЙДЕ ЗАВАНТАЖЕННЯ ВАШИХ ФАЙЛІВ', - 'move_file_folder' => 'Перемістити файл/папку', - 'new_file_folder' => 'Нова назва файлу/папки', - 'new_folder_name' => 'Нова назва папки', - 'no_files_here' => 'Тут немає файлів', - 'no_files_in_folder' => 'Відсутні файли в даній папці', - 'nothing_selected' => 'Нічого не обрано', - 'rename_file_folder' => 'Перейменувати файл/папку', - 'success_uploaded_file' => 'Успішне завантаження файлу!', - 'success_uploading' => 'Успішне завантаження зображення!', - 'uploading_wrong_type' => 'Помилка завантаження: непідтримуваний формат файлу або завеликий розмір файлу для завантаження!', - 'video_support' => 'Ваш браузер не підтримує елемент video.', - 'crop' => 'Обрізати', - 'crop_and_create' => 'Обрізати та створити', - 'crop_override_confirm' => 'Існуюче зображення буде змінене, ви впевнені?', - 'crop_image' => 'Обрізати зображення', - 'success_crop_image' => 'Зображення успішно обрізано', - 'height' => 'Висота: ', - 'width' => 'Ширина: ', + 'destination_folder' => 'Папка призначення', + 'drag_drop_info' => 'Перетягніть файли мишкою або натисніть на кнопку знизу для завантаження.', + 'error_already_exists' => 'Файл/папка з такою назвою вже існує в даному каталозі', + 'error_creating_dir' => 'Не вдалось створити папку: перевірте права доступу', + 'error_deleting_file' => 'Не вдалось видалити файл: перевірте права доступу', + 'error_deleting_folder' => 'Не вдалось видалити папку: перевірте права доступу', + 'error_may_exist' => 'Файл чи папка з такою назвою вже існує: виберіть іншу назву або видаліть існуючий файл!', + 'error_moving' => 'Не вдалось перемістити файл чи папку: перевірте права доступу.', + 'error_uploading' => 'Помилка завантаження: сталась невідома помилка!', + 'folder_exists_already' => 'Папка з такою назвою вже існує: видаліть її, якщо хочете створити нову з такою ж назвою.', + 'image_does_not_exist' => 'Зображення не існує', + 'image_removed' => 'Зображення видалено', + 'library' => 'Медіатека', + 'loading' => 'ЙДЕ ЗАВАНТАЖЕННЯ ВАШИХ ФАЙЛІВ', + 'move_file_folder' => 'Перемістити файл/папку', + 'new_file_folder' => 'Нова назва файлу/папки', + 'new_folder_name' => 'Нова назва папки', + 'no_files_here' => 'Тут немає файлів', + 'no_files_in_folder' => 'Відсутні файли в даній папці', + 'nothing_selected' => 'Нічого не обрано', + 'rename_file_folder' => 'Перейменувати файл/папку', + 'success_uploaded_file' => 'Успішне завантаження файлу!', + 'success_uploading' => 'Успішне завантаження зображення!', + 'uploading_wrong_type' => 'Помилка завантаження: непідтримуваний формат файлу або завеликий розмір файлу для завантаження!', + 'video_support' => 'Ваш браузер не підтримує елемент video.', + 'crop' => 'Обрізати', + 'crop_and_create' => 'Обрізати та створити', + 'crop_override_confirm' => 'Існуюче зображення буде змінене, ви впевнені?', + 'crop_image' => 'Обрізати зображення', + 'success_crop_image' => 'Зображення успішно обрізано', + 'height' => 'Висота: ', + 'width' => 'Ширина: ', ], 'menu_builder' => [ - 'color' => 'Колір в RGB чи hex (необов\'язково)', - 'color_ph' => 'Колір (наприклад, #ffffff чи rgb(255, 255, 255)', - 'create_new_item' => 'Створити новий пункт меню', - 'delete_item_confirm' => 'Так, видалити цей пункт меню', + 'color' => 'Колір в RGB чи hex (необов\'язково)', + 'color_ph' => 'Колір (наприклад, #ffffff чи rgb(255, 255, 255)', + 'create_new_item' => 'Створити новий пункт меню', + 'delete_item_confirm' => 'Так, видалити цей пункт меню', 'delete_item_question' => 'Ви впевнені, що хочете видалити цей пункт меню?', - 'drag_drop_info' => 'Перетягніть пункти меню нижче, щоб змінити їх порядок.', - 'dynamic_route' => 'Динамічний шлях', - 'edit_item' => 'Редагувати пункт меню', - 'icon_class' => 'Іконка для пункту меню (Використовуйте ', - 'icon_class2' => 'Voyager Font Class)', - 'icon_class_ph' => 'Іконка (необов\'язково)', - 'item_route' => 'Шлях для пункту меню', - 'item_title' => 'Назва пункту меню', - 'link_type' => 'Тип посилання', - 'new_menu_item' => 'Новий пункт меню', - 'open_in' => 'Відкрити в', - 'open_new' => 'Нова вкладка/вікно', - 'open_same' => 'Та ж вкладка/вікно', - 'route_parameter' => 'Параметри шляху (якщо є)', - 'static_url' => 'Статичний URL', + 'drag_drop_info' => 'Перетягніть пункти меню нижче, щоб змінити їх порядок.', + 'dynamic_route' => 'Динамічний шлях', + 'edit_item' => 'Редагувати пункт меню', + 'icon_class' => 'Іконка для пункту меню (Використовуйте ', + 'icon_class2' => 'Voyager Font Class)', + 'icon_class_ph' => 'Іконка (необов\'язково)', + 'item_route' => 'Шлях для пункту меню', + 'item_title' => 'Назва пункту меню', + 'link_type' => 'Тип посилання', + 'new_menu_item' => 'Новий пункт меню', + 'open_in' => 'Відкрити в', + 'open_new' => 'Нова вкладка/вікно', + 'open_same' => 'Та ж вкладка/вікно', + 'route_parameter' => 'Параметри шляху (якщо є)', + 'static_url' => 'Статичний URL', 'successfully_created' => 'Пункт меню успішно створено.', 'successfully_deleted' => 'Пункт меню успішно видалено.', 'successfully_updated' => 'Пункт меню успішно оновлено.', - 'updated_order' => 'Структуру меню успішно оновлено.', - 'url' => 'URL для пункту меню', - 'usage_hint' => 'Ви можете вивести меню в будь-якому місці вашого сайту, викликавши |Ви можете вивести це меню в будь-якому місці вашого сайту, викликавши ', + 'updated_order' => 'Структуру меню успішно оновлено.', + 'url' => 'URL для пункту меню', + 'usage_hint' => 'Ви можете вивести меню в будь-якому місці вашого сайту, викликавши |Ви можете вивести це меню в будь-якому місці вашого сайту, викликавши ', ], 'post' => [ - 'category' => 'Категорія повідомлення', - 'content' => 'Текст повідомлення', - 'details' => 'Властивості', - 'excerpt' => 'Анонс Короткий опис статті', - 'image' => 'Зображення', + 'category' => 'Категорія повідомлення', + 'content' => 'Текст повідомлення', + 'details' => 'Властивості', + 'excerpt' => 'Анонс Короткий опис статті', + 'image' => 'Зображення', 'meta_description' => 'Опис (meta)', - 'meta_keywords' => 'Ключові слова (meta)', - 'new' => 'Опублікувати', - 'seo_content' => 'SEO текст', - 'seo_title' => 'SEO назва', - 'slug' => 'Посилання', - 'status' => 'Статус публікації', - 'status_draft' => 'Чернетка', - 'status_pending' => 'На модерації', + 'meta_keywords' => 'Ключові слова (meta)', + 'new' => 'Опублікувати', + 'seo_content' => 'SEO текст', + 'seo_title' => 'SEO назва', + 'slug' => 'Посилання', + 'status' => 'Статус публікації', + 'status_draft' => 'Чернетка', + 'status_pending' => 'На модерації', 'status_published' => 'Опубліковано', - 'title' => 'Заголовок', - 'title_sub' => 'Назва статті', - 'update' => 'Оновити', + 'title' => 'Заголовок', + 'title_sub' => 'Назва статті', + 'update' => 'Оновити', ], 'database' => [ - 'add_bread' => 'Додати BREAD до даної таблиці', - 'add_new_column' => 'Додати новий стовпчик', - 'add_softdeletes' => 'Додати Soft Deletes', - 'add_timestamps' => 'Додати мітки часу', - 'already_exists' => 'Вже існує', - 'already_exists_table' => 'Таблиця :table вже існує', - 'bread_crud_actions' => 'BREAD/CRUD дії', - 'bread_info' => 'BREAD інформація', - 'column' => 'Стовпчик', - 'composite_warning' => 'Попередження: цей стовпчик є частиною складового індексу', - 'controller_name' => 'Назва контролера', - 'controller_name_hint' => 'наприклад, порожній PageController, буде використовувати BREAD Controller', - 'create_bread_for_table' => 'Створити BREAD для таблиці :table', - 'create_migration' => 'Створити міграцію для даної таблиці?', - 'create_model_table' => 'Створити модель для даної таблиці?', - 'create_new_table' => 'Створити нову таблицю', - 'create_your_new_table' => 'Створити вашу нову таблицю', - 'default' => 'За замовчуванням', - 'delete_bread' => 'Видалити BREAD', + 'add_bread' => 'Додати BREAD до даної таблиці', + 'add_new_column' => 'Додати новий стовпчик', + 'add_softdeletes' => 'Додати Soft Deletes', + 'add_timestamps' => 'Додати мітки часу', + 'already_exists' => 'Вже існує', + 'already_exists_table' => 'Таблиця :table вже існує', + 'bread_crud_actions' => 'BREAD/CRUD дії', + 'bread_info' => 'BREAD інформація', + 'column' => 'Стовпчик', + 'composite_warning' => 'Попередження: цей стовпчик є частиною складового індексу', + 'controller_name' => 'Назва контролера', + 'controller_name_hint' => 'наприклад, порожній PageController, буде використовувати BREAD Controller', + 'create_bread_for_table' => 'Створити BREAD для таблиці :table', + 'create_migration' => 'Створити міграцію для даної таблиці?', + 'create_model_table' => 'Створити модель для даної таблиці?', + 'create_new_table' => 'Створити нову таблицю', + 'create_your_new_table' => 'Створити вашу нову таблицю', + 'default' => 'За замовчуванням', + 'delete_bread' => 'Видалити BREAD', 'delete_bread_before_table' => 'Перед видаленням таблиці обов\'язково видаліть BREAD таблиці.', - 'delete_table_bread_conf' => 'Так, видалити BREAD', - 'delete_table_bread_quest' => 'Ви впевнені, що хочете видалити BREAD для таблиці :table?', - 'delete_table_confirm' => 'Так, видалити таблицю', - 'delete_table_question' => 'Ви дійсно хочете видалити таблицю :table?', - 'description' => 'Опис', - 'display_name' => 'Відображена назва', - 'display_name_plural' => 'Відображена назва (в множині)', - 'display_name_singular' => 'Відображена назва (в однині)', - 'edit_bread' => 'Редагувати BREAD', - 'edit_bread_for_table' => 'Редагувати BREAD для таблиці :table', - 'edit_rows' => 'Редагувати рядки таблиці :table нижче', - 'edit_table' => 'Редагувати таблицю :table нижче', - 'edit_table_not_exist' => 'Таблиці, яку ви хочете редагувати, не існує', - 'error_creating_bread' => 'Схоже, виникла проблема з створенням даного BREAD', - 'error_removing_bread' => 'Схоже, виникла проблема з видаленням даного BREAD', - 'error_updating_bread' => 'Схоже, виникла проблема з оновленням даного BREAD', - 'extra' => 'Додатково', - 'field' => 'Поле', - 'field_safe_failed' => 'Не вдалось зберегти поле :field, буде проведено відкат до попереднього значення.', - 'generate_permissions' => 'Створення прав доступу', - 'icon_class' => 'Значок для даної таблиці', - 'icon_hint' => 'Значок для (необов\'язково)', - 'icon_hint2' => 'Voyager Font Class', - 'index' => 'INDEX', - 'input_type' => 'Тип вводу', - 'key' => 'Ключ', - 'model_class' => 'Назва класу моделі', - 'model_name' => 'Назва моделі', - 'model_name_ph' => 'наприклад \App\Models\User, якщо залишити порожнім - спробує використати назву таблиці', - 'name_warning' => 'Вкажіть стовпчик перед додаванням індексу', - 'no_composites_warning' => 'В даній таблиці присутній складовий індекс. Зверніть увагу, що на даний момент вони не підтримуються. Будьте обережні при додаванні/видаленні індексів.', - 'null' => 'Null', - 'optional_details' => 'Необов\'язкові відомості', - 'policy_class' => 'Назва класу політики', - 'policy_name' => 'Назва політики', - 'policy_name_ph' => 'наприклад \App\Policies\UserPolicy, якщо залишити порожнім - спробує використати політику за замовчуванням', - 'primary' => 'ПЕРВИННИЙ КЛЮЧ', - 'server_pagination' => 'Пагінація на стороні сервера', - 'success_create_table' => 'Таблиця :table успішно створена', - 'success_created_bread' => 'Новий BREAD успішно створений', - 'success_delete_table' => 'Таблиця :table успішно видалена', - 'success_remove_bread' => 'BREAD успішно видалений з :datatype', - 'success_update_bread' => 'BREAD успішно оновлений в :datatype', - 'success_update_table' => 'Таблиця :table успішно оновлена', - 'table_actions' => 'Дії з таблицею', - 'table_columns' => 'Стовпчики таблиці', - 'table_has_index' => 'В даній таблиці вже є первинний ключ.', - 'table_name' => 'Назва таблиці', - 'table_no_columns' => 'В таблиці відсутні стовпчики...', - 'type' => 'Тип', - 'type_not_supported' => 'Даний тип не підтримується', - 'unique' => 'UNIQUE', - 'unknown_type' => 'Невідомий тип', - 'update_table' => 'Оновити таблицю', - 'url_slug' => 'URL Slug (пвинен бути унікальним)', - 'url_slug_ph' => 'URL slug (наприклад, posts)', - 'visibility' => 'Видимість', + 'delete_table_bread_conf' => 'Так, видалити BREAD', + 'delete_table_bread_quest' => 'Ви впевнені, що хочете видалити BREAD для таблиці :table?', + 'delete_table_confirm' => 'Так, видалити таблицю', + 'delete_table_question' => 'Ви дійсно хочете видалити таблицю :table?', + 'description' => 'Опис', + 'display_name' => 'Відображена назва', + 'display_name_plural' => 'Відображена назва (в множині)', + 'display_name_singular' => 'Відображена назва (в однині)', + 'edit_bread' => 'Редагувати BREAD', + 'edit_bread_for_table' => 'Редагувати BREAD для таблиці :table', + 'edit_rows' => 'Редагувати рядки таблиці :table нижче', + 'edit_table' => 'Редагувати таблицю :table нижче', + 'edit_table_not_exist' => 'Таблиці, яку ви хочете редагувати, не існує', + 'error_creating_bread' => 'Схоже, виникла проблема з створенням даного BREAD', + 'error_removing_bread' => 'Схоже, виникла проблема з видаленням даного BREAD', + 'error_updating_bread' => 'Схоже, виникла проблема з оновленням даного BREAD', + 'extra' => 'Додатково', + 'field' => 'Поле', + 'field_safe_failed' => 'Не вдалось зберегти поле :field, буде проведено відкат до попереднього значення.', + 'generate_permissions' => 'Створення прав доступу', + 'icon_class' => 'Значок для даної таблиці', + 'icon_hint' => 'Значок для (необов\'язково)', + 'icon_hint2' => 'Voyager Font Class', + 'index' => 'INDEX', + 'input_type' => 'Тип вводу', + 'key' => 'Ключ', + 'model_class' => 'Назва класу моделі', + 'model_name' => 'Назва моделі', + 'model_name_ph' => 'наприклад \App\Models\User, якщо залишити порожнім - спробує використати назву таблиці', + 'name_warning' => 'Вкажіть стовпчик перед додаванням індексу', + 'no_composites_warning' => 'В даній таблиці присутній складовий індекс. Зверніть увагу, що на даний момент вони не підтримуються. Будьте обережні при додаванні/видаленні індексів.', + 'null' => 'Null', + 'optional_details' => 'Необов\'язкові відомості', + 'policy_class' => 'Назва класу політики', + 'policy_name' => 'Назва політики', + 'policy_name_ph' => 'наприклад \App\Policies\UserPolicy, якщо залишити порожнім - спробує використати політику за замовчуванням', + 'primary' => 'ПЕРВИННИЙ КЛЮЧ', + 'server_pagination' => 'Пагінація на стороні сервера', + 'success_create_table' => 'Таблиця :table успішно створена', + 'success_created_bread' => 'Новий BREAD успішно створений', + 'success_delete_table' => 'Таблиця :table успішно видалена', + 'success_remove_bread' => 'BREAD успішно видалений з :datatype', + 'success_update_bread' => 'BREAD успішно оновлений в :datatype', + 'success_update_table' => 'Таблиця :table успішно оновлена', + 'table_actions' => 'Дії з таблицею', + 'table_columns' => 'Стовпчики таблиці', + 'table_has_index' => 'В даній таблиці вже є первинний ключ.', + 'table_name' => 'Назва таблиці', + 'table_no_columns' => 'В таблиці відсутні стовпчики...', + 'type' => 'Тип', + 'type_not_supported' => 'Даний тип не підтримується', + 'unique' => 'UNIQUE', + 'unknown_type' => 'Невідомий тип', + 'update_table' => 'Оновити таблицю', + 'url_slug' => 'URL Slug (пвинен бути унікальним)', + 'url_slug_ph' => 'URL slug (наприклад, posts)', + 'visibility' => 'Видимість', ], 'dimmer' => [ - 'page' => 'сторінка|сторінки', + 'page' => 'сторінка|сторінки', 'page_link_text' => 'Всі сторінки', - 'page_text' => 'В базі даних :count :string', - 'post' => 'запис|записи', + 'page_text' => 'В базі даних :count :string', + 'post' => 'запис|записи', 'post_link_text' => 'Всі записи', - 'post_text' => 'В базі даних :count :string', - 'user' => 'користувач|користувачів', + 'post_text' => 'В базі даних :count :string', + 'user' => 'користувач|користувачів', 'user_link_text' => 'Всі користувачі', - 'user_text' => 'В базі даних :count :string', + 'user_text' => 'В базі даних :count :string', ], 'form' => [ - 'field_password_keep' => 'Залиште порожнім, якщо не хочете змінювати пароль', + 'field_password_keep' => 'Залиште порожнім, якщо не хочете змінювати пароль', 'field_select_dd_relationship' => 'Обов\'язково налаштуйте відповідні стосунки (relationship) в методі :method класу :class.', - 'type_checkbox' => 'Чекбокс', - 'type_codeeditor' => 'Редактор коду', - 'type_file' => 'Файл', - 'type_image' => 'Зображення', - 'type_radiobutton' => 'Радіо-кнопка', - 'type_richtextbox' => 'Візуальний редактор', - 'type_selectdropdown' => 'Випадаючий список', - 'type_textarea' => 'Текстове поле', - 'type_textbox' => 'Поле вводу', + 'type_checkbox' => 'Чекбокс', + 'type_codeeditor' => 'Редактор коду', + 'type_file' => 'Файл', + 'type_image' => 'Зображення', + 'type_radiobutton' => 'Радіо-кнопка', + 'type_richtextbox' => 'Візуальний редактор', + 'type_selectdropdown' => 'Випадаючий список', + 'type_textarea' => 'Текстове поле', + 'type_textbox' => 'Поле вводу', ], // DataTable translations from: https://github.com/DataTables/Plugins/tree/master/i18n 'datatable' => [ - 'sEmptyTable' => 'В таблиці немає даних', - 'sInfo' => 'Показано від _START_ до _END_ з _TOTAL_ записів', - 'sInfoEmpty' => 'Показано 0 з 0 записів', - 'sInfoFiltered' => '(вибрано з _MAX_ записів)', - 'sInfoPostFix' => '', - 'sInfoThousands' => ',', - 'sLengthMenu' => 'Показати _MENU_ записів', + 'sEmptyTable' => 'В таблиці немає даних', + 'sInfo' => 'Показано від _START_ до _END_ з _TOTAL_ записів', + 'sInfoEmpty' => 'Показано 0 з 0 записів', + 'sInfoFiltered' => '(вибрано з _MAX_ записів)', + 'sInfoPostFix' => '', + 'sInfoThousands' => ',', + 'sLengthMenu' => 'Показати _MENU_ записів', 'sLoadingRecords' => 'Загрузка записів...', - 'sProcessing' => 'Зачекайте...', - 'sSearch' => 'Пошук:', - 'sZeroRecords' => 'Записи відсутні', - 'oPaginate' => [ - 'sFirst' => 'Перша', - 'sLast' => 'Остання', - 'sNext' => 'Наступна', + 'sProcessing' => 'Зачекайте...', + 'sSearch' => 'Пошук:', + 'sZeroRecords' => 'Записи відсутні', + 'oPaginate' => [ + 'sFirst' => 'Перша', + 'sLast' => 'Остання', + 'sNext' => 'Наступна', 'sPrevious' => 'Попередня', ], 'oAria' => [ - 'sSortAscending' => ': активувати для сортування стовпчика за зростанням', + 'sSortAscending' => ': активувати для сортування стовпчика за зростанням', 'sSortDescending' => ': активувати для сортування стовпчика за спаданням', ], ], 'theme' => [ - 'footer_copyright' => 'Зроблено з ', + 'footer_copyright' => 'Зроблено з ', 'footer_copyright2' => 'Зроблено під ромом :) ', ], 'json' => [ - 'invalid' => 'неправильний формат JSON', - 'invalid_message' => 'Введено неправильний формат JSON', - 'valid' => 'Правильний формат JSON', + 'invalid' => 'неправильний формат JSON', + 'invalid_message' => 'Введено неправильний формат JSON', + 'valid' => 'Правильний формат JSON', 'validation_errors' => 'Помилки при перевірці даних', ], 'analytics' => [ - 'by_pageview' => 'По сторінках', - 'by_sessions' => 'По сесіях', - 'by_users' => 'По користувачах', - 'no_client_id' => 'Для активації аналітики необхідно отримати ідентифікатор клієнта Google Analytics та додати його в поле google_analytics_client_id меню налаштувань. Отримати код Google Analytics: ', - 'set_view' => 'Виберіть вид', - 'this_vs_last_week' => 'Поточний тиждень в порівнянні з попереднім.', - 'this_vs_last_year' => 'Поточний рік в порівнянні з попереднім', - 'top_browsers' => 'Найкращі браузери', - 'top_countries' => 'Найкращі країни', + 'by_pageview' => 'По сторінках', + 'by_sessions' => 'По сесіях', + 'by_users' => 'По користувачах', + 'no_client_id' => 'Для активації аналітики необхідно отримати ідентифікатор клієнта Google Analytics та додати його в поле google_analytics_client_id меню налаштувань. Отримати код Google Analytics: ', + 'set_view' => 'Виберіть вид', + 'this_vs_last_week' => 'Поточний тиждень в порівнянні з попереднім.', + 'this_vs_last_year' => 'Поточний рік в порівнянні з попереднім', + 'top_browsers' => 'Найкращі браузери', + 'top_countries' => 'Найкращі країни', 'various_visualizations' => 'Різноманітні візуалізації', ], 'error' => [ - 'symlink_created_text' => 'Ми щойно створили посилання для вас.', - 'symlink_created_title' => 'Створено відсутнє посилання на сховище даних.', - 'symlink_failed_text' => 'Не вдалось створити відсутнє посилання: схоже, справа в хостингу.', - 'symlink_failed_title' => 'Не вдалось створити посилання для сховища даних.', + 'symlink_created_text' => 'Ми щойно створили посилання для вас.', + 'symlink_created_title' => 'Створено відсутнє посилання на сховище даних.', + 'symlink_failed_text' => 'Не вдалось створити відсутнє посилання: схоже, справа в хостингу.', + 'symlink_failed_title' => 'Не вдалось створити посилання для сховища даних.', 'symlink_missing_button' => 'Виправте', - 'symlink_missing_text' => 'Не знайдено посилання на сховище даних: це може спричинити проблеми з завантаженням медіафайлів.', - 'symlink_missing_title' => 'Відсутнє посилання на сховище даних.', + 'symlink_missing_text' => 'Не знайдено посилання на сховище даних: це може спричинити проблеми з завантаженням медіафайлів.', + 'symlink_missing_title' => 'Відсутнє посилання на сховище даних.', ], ]; diff --git a/lang/zh_CN/voyager.php b/lang/zh_CN/voyager.php index 692480227..1aa01ac48 100644 --- a/lang/zh_CN/voyager.php +++ b/lang/zh_CN/voyager.php @@ -8,366 +8,366 @@ 'this_year' => '今年', ], 'generic' => [ - 'action' => '操作', - 'actions' => '操作', - 'add' => '添加', - 'add_folder' => '添加文件夹', - 'add_new' => '添加', - 'all_done' => '已全部完成', - 'are_you_sure' => '您确定吗?', - 'are_you_sure_delete' => '你确定要删除吗', - 'auto_increment' => '自增', - 'browse' => '浏览', - 'builder' => '构建器', - 'bulk_delete' => '删除选中', - 'bulk_delete_confirm' => '是的, 删除这些', - 'bulk_delete_nothing' => '没有选择要删除的内容', - 'cancel' => '取消', - 'choose_type' => '选择类型', - 'click_here' => '点击这里', - 'close' => '关闭', - 'compass' => '指南针', - 'created_at' => 'created_at', - 'custom' => '自定义', - 'dashboard' => '控制面板', - 'database' => '数据库', - 'default' => '默认', - 'delete' => '删除', - 'delete_confirm' => '是的,删除它!', - 'delete_question' => '您确定要删除它吗?', - 'delete_this_confirm' => '是的,我要删除!', - 'deselect_all' => '反选全部', - 'download' => '下载', - 'edit' => '编辑', - 'email' => '电子邮件', - 'error_deleting' => '抱歉,在删除过程中出现了问题', - 'exception' => '异常', - 'featured' => '特色', - 'field_does_not_exist' => '字段不存在', - 'how_to_use' => '如何使用', - 'index' => 'INDEX', - 'internal_error' => '内部错误', - 'items' => '项目', - 'keep_sidebar_open' => '保持边栏处在打开状态', - 'key' => '键', - 'last_modified' => 'last_modified', - 'length' => '长度', - 'login' => '登录', - 'media' => '媒体', - 'menu_builder' => '菜单生成器', - 'move' => '移动', - 'name' => '命名', - 'new' => '新', - 'no' => '没有', - 'no_thanks' => '不,谢谢', - 'not_null' => '非空', - 'options' => '选项', - 'password' => '密码', - 'permissions' => '权限', - 'profile' => '个人资料', - 'public_url' => '公开 URL', - 'read' => '读', - 'rename' => '重命名', - 'required' => '必须', - 'return_to_list' => '返回列表', - 'route' => '路由', - 'save' => '保存', - 'search' => '搜索', - 'select_all' => '选择全部', - 'settings' => '设置', - 'showing_entries' => '展示从 :from 到 :to 项结果,共 :all 项|展示从 :from 到 :to 项结果,共 :all 项', - 'submit' => '发布', + 'action' => '操作', + 'actions' => '操作', + 'add' => '添加', + 'add_folder' => '添加文件夹', + 'add_new' => '添加', + 'all_done' => '已全部完成', + 'are_you_sure' => '您确定吗?', + 'are_you_sure_delete' => '你确定要删除吗', + 'auto_increment' => '自增', + 'browse' => '浏览', + 'builder' => '构建器', + 'bulk_delete' => '删除选中', + 'bulk_delete_confirm' => '是的, 删除这些', + 'bulk_delete_nothing' => '没有选择要删除的内容', + 'cancel' => '取消', + 'choose_type' => '选择类型', + 'click_here' => '点击这里', + 'close' => '关闭', + 'compass' => '指南针', + 'created_at' => 'created_at', + 'custom' => '自定义', + 'dashboard' => '控制面板', + 'database' => '数据库', + 'default' => '默认', + 'delete' => '删除', + 'delete_confirm' => '是的,删除它!', + 'delete_question' => '您确定要删除它吗?', + 'delete_this_confirm' => '是的,我要删除!', + 'deselect_all' => '反选全部', + 'download' => '下载', + 'edit' => '编辑', + 'email' => '电子邮件', + 'error_deleting' => '抱歉,在删除过程中出现了问题', + 'exception' => '异常', + 'featured' => '特色', + 'field_does_not_exist' => '字段不存在', + 'how_to_use' => '如何使用', + 'index' => 'INDEX', + 'internal_error' => '内部错误', + 'items' => '项目', + 'keep_sidebar_open' => '保持边栏处在打开状态', + 'key' => '键', + 'last_modified' => 'last_modified', + 'length' => '长度', + 'login' => '登录', + 'media' => '媒体', + 'menu_builder' => '菜单生成器', + 'move' => '移动', + 'name' => '命名', + 'new' => '新', + 'no' => '没有', + 'no_thanks' => '不,谢谢', + 'not_null' => '非空', + 'options' => '选项', + 'password' => '密码', + 'permissions' => '权限', + 'profile' => '个人资料', + 'public_url' => '公开 URL', + 'read' => '读', + 'rename' => '重命名', + 'required' => '必须', + 'return_to_list' => '返回列表', + 'route' => '路由', + 'save' => '保存', + 'search' => '搜索', + 'select_all' => '选择全部', + 'settings' => '设置', + 'showing_entries' => '展示从 :from 到 :to 项结果,共 :all 项|展示从 :from 到 :to 项结果,共 :all 项', + 'submit' => '发布', 'successfully_added_new' => '添加成功', - 'successfully_deleted' => '删除成功', - 'successfully_updated' => '更新成功', - 'timestamp' => '时间戳', - 'title' => '标题', - 'type' => '类型', - 'unsigned' => 'Unsigned', - 'unstick_sidebar' => '取消固定侧边栏', - 'update' => '更新', - 'update_failed' => '更新失败', - 'upload' => '上传', - 'url' => '网址', - 'view' => '视图', - 'viewing' => '查看', - 'yes' => '好的', - 'yes_please' => '好的,就这样做', + 'successfully_deleted' => '删除成功', + 'successfully_updated' => '更新成功', + 'timestamp' => '时间戳', + 'title' => '标题', + 'type' => '类型', + 'unsigned' => 'Unsigned', + 'unstick_sidebar' => '取消固定侧边栏', + 'update' => '更新', + 'update_failed' => '更新失败', + 'upload' => '上传', + 'url' => '网址', + 'view' => '视图', + 'viewing' => '查看', + 'yes' => '好的', + 'yes_please' => '好的,就这样做', ], 'login' => [ - 'loggingin' => '正在登录', + 'loggingin' => '正在登录', 'signin_below' => '在下方登录:', - 'welcome' => '欢迎使用 Voyager - 不可错过的 Laravel 后台管理框架', + 'welcome' => '欢迎使用 Voyager - 不可错过的 Laravel 后台管理框架', ], 'profile' => [ - 'avatar' => '头像', - 'edit' => '更改个人资料', - 'edit_user' => '编辑用户', - 'password' => '密码', + 'avatar' => '头像', + 'edit' => '更改个人资料', + 'edit_user' => '编辑用户', + 'password' => '密码', 'password_hint' => '留空为不修改密码', - 'role' => '权限', - 'user_role' => '用户权限', + 'role' => '权限', + 'user_role' => '用户权限', ], 'settings' => [ - 'usage_help' => '通过调用,您可以在站点的任何地方获得每个设置的值', - 'save' => '保存设置', - 'new' => '新设置', - 'help_name' => '设置名称 例如:管理标题', - 'help_key' => '设置键(key) 例如:admin_title', - 'help_option' => '(可选。仅适用于下拉框或单选按钮之类的某些类型)', - 'add_new' => '添加新设置', - 'delete_question' => '您确定要删除 :setting 设置吗?', - 'delete_confirm' => '是的,删除此设置', + 'usage_help' => '通过调用,您可以在站点的任何地方获得每个设置的值', + 'save' => '保存设置', + 'new' => '新设置', + 'help_name' => '设置名称 例如:管理标题', + 'help_key' => '设置键(key) 例如:admin_title', + 'help_option' => '(可选。仅适用于下拉框或单选按钮之类的某些类型)', + 'add_new' => '添加新设置', + 'delete_question' => '您确定要删除 :setting 设置吗?', + 'delete_confirm' => '是的,删除此设置', 'successfully_created' => '成功创建了设置', - 'successfully_saved' => '成功保存设置', + 'successfully_saved' => '成功保存设置', 'successfully_deleted' => '成功删除设置', - 'already_at_top' => '已经在顶部了', - 'already_at_bottom' => '已经在底部了', - 'key_already_exists' => '键 :key 已存在', - 'moved_order_up' => '已将 :name 设置抬升', - 'moved_order_down' => '已将 :name 设置下沉', + 'already_at_top' => '已经在顶部了', + 'already_at_bottom' => '已经在底部了', + 'key_already_exists' => '键 :key 已存在', + 'moved_order_up' => '已将 :name 设置抬升', + 'moved_order_down' => '已将 :name 设置下沉', 'successfully_removed' => '成功移除 :name 的值', - 'group_general' => '概览', - 'group_admin' => '管理', - 'group_site' => '站点', - 'group' => '组', - 'help_group' => '这个设置被分配给', + 'group_general' => '概览', + 'group_admin' => '管理', + 'group_site' => '站点', + 'group' => '组', + 'help_group' => '这个设置被分配给', ], 'media' => [ - 'add_new_folder' => '添加新文件夹', - 'audio_support' => '您的浏览器不支持音频元素。', - 'create_new_folder' => '创建新文件夹', + 'add_new_folder' => '添加新文件夹', + 'audio_support' => '您的浏览器不支持音频元素。', + 'create_new_folder' => '创建新文件夹', 'delete_folder_question' => '此操作将连同其内的所有文件和文件夹一并删除', - 'destination_folder' => '目标文件夹', - 'drag_drop_info' => '拖放文件或点击下面的上传', - 'error_already_exists' => '对不起,相同名称的文件 / 文件夹已存在。', - 'error_creating_dir' => '对不起,创建目录似乎出了问题,请检查您的权限', - 'error_deleting_file' => '抱歉,在删除此文件时出现了错误,请检查您的权限', - 'error_deleting_folder' => '对不起,在删除此文件夹时出现了错误,请检查您的权限', - 'error_may_exist' => '可能已存在同名的文件或文件夹。请选择另一个名称或删除现有文件。', - 'error_moving' => '对不起,在移动文件 / 文件夹时出现了问题,请确保您有正确的权限。', - 'error_uploading' => '上传失败:发生未知错误!', - 'folder_exists_already' => '对不起,文件夹已经存在,如果您想重新创建,请删除该文件夹', - 'image_does_not_exist' => '图片不存在', - 'image_removed' => '图片已删除', - 'library' => '媒体库', - 'loading' => '加载你的媒体文件', - 'move_file_folder' => '移动文件或文件夹', - 'new_file_folder' => '新文件 / 文件夹的名字', - 'new_folder_name' => '新文件夹名称', - 'no_files_here' => '没有文件。', - 'no_files_in_folder' => '这个文件夹中没有文件。', - 'nothing_selected' => '没有选择文件或文件夹', - 'rename_file_folder' => '重命名文件或文件夹', - 'success_uploaded_file' => '成功上传新文件!', - 'success_uploading' => '图片上传成功!', - 'uploading_wrong_type' => '上传失败:不受支持的文件格式,或是它文件过大而无法上传!', - 'video_support' => '您的浏览器不支持视频标签。', + 'destination_folder' => '目标文件夹', + 'drag_drop_info' => '拖放文件或点击下面的上传', + 'error_already_exists' => '对不起,相同名称的文件 / 文件夹已存在。', + 'error_creating_dir' => '对不起,创建目录似乎出了问题,请检查您的权限', + 'error_deleting_file' => '抱歉,在删除此文件时出现了错误,请检查您的权限', + 'error_deleting_folder' => '对不起,在删除此文件夹时出现了错误,请检查您的权限', + 'error_may_exist' => '可能已存在同名的文件或文件夹。请选择另一个名称或删除现有文件。', + 'error_moving' => '对不起,在移动文件 / 文件夹时出现了问题,请确保您有正确的权限。', + 'error_uploading' => '上传失败:发生未知错误!', + 'folder_exists_already' => '对不起,文件夹已经存在,如果您想重新创建,请删除该文件夹', + 'image_does_not_exist' => '图片不存在', + 'image_removed' => '图片已删除', + 'library' => '媒体库', + 'loading' => '加载你的媒体文件', + 'move_file_folder' => '移动文件或文件夹', + 'new_file_folder' => '新文件 / 文件夹的名字', + 'new_folder_name' => '新文件夹名称', + 'no_files_here' => '没有文件。', + 'no_files_in_folder' => '这个文件夹中没有文件。', + 'nothing_selected' => '没有选择文件或文件夹', + 'rename_file_folder' => '重命名文件或文件夹', + 'success_uploaded_file' => '成功上传新文件!', + 'success_uploading' => '图片上传成功!', + 'uploading_wrong_type' => '上传失败:不受支持的文件格式,或是它文件过大而无法上传!', + 'video_support' => '您的浏览器不支持视频标签。', ], 'menu_builder' => [ - 'color' => 'RGB或hex中的颜色(可选)', - 'color_ph' => '颜色 (例如:#ffffff 或 rgb(255, 255, 255)', - 'create_new_item' => '创建一个新的菜单项', - 'delete_item_confirm' => '是的,删除这个菜单项', + 'color' => 'RGB或hex中的颜色(可选)', + 'color_ph' => '颜色 (例如:#ffffff 或 rgb(255, 255, 255)', + 'create_new_item' => '创建一个新的菜单项', + 'delete_item_confirm' => '是的,删除这个菜单项', 'delete_item_question' => '您确定要删除这个菜单项吗?', - 'drag_drop_info' => '拖放下面的菜单项重新排列。', - 'dynamic_route' => '动态路由', - 'edit_item' => '编辑菜单项', - 'icon_class' => '菜单项的字体图标类(使用', - 'icon_class2' => 'Voyager 图标库)', - 'icon_class_ph' => 'Icon Class(可选)', - 'item_route' => '菜单项的路由', - 'item_title' => '菜单项的标题', - 'link_type' => '链接类型', - 'new_menu_item' => '新菜单项', - 'open_in' => '打开', - 'open_new' => '新标签页 / 窗口打开', - 'open_same' => '在相同标签 / 窗口打开', - 'route_parameter' => '路由参数(如果存在)', - 'static_url' => '静态 URL', + 'drag_drop_info' => '拖放下面的菜单项重新排列。', + 'dynamic_route' => '动态路由', + 'edit_item' => '编辑菜单项', + 'icon_class' => '菜单项的字体图标类(使用', + 'icon_class2' => 'Voyager 图标库)', + 'icon_class_ph' => 'Icon Class(可选)', + 'item_route' => '菜单项的路由', + 'item_title' => '菜单项的标题', + 'link_type' => '链接类型', + 'new_menu_item' => '新菜单项', + 'open_in' => '打开', + 'open_new' => '新标签页 / 窗口打开', + 'open_same' => '在相同标签 / 窗口打开', + 'route_parameter' => '路由参数(如果存在)', + 'static_url' => '静态 URL', 'successfully_created' => '成功创建新菜单项。', 'successfully_deleted' => '成功删除菜单项。', 'successfully_updated' => '成功更新菜单项。', - 'updated_order' => '成功更新菜单顺序。', - 'url' => '菜单项的 URL', - 'usage_hint' => 'You can output a menu anywhere on your site by calling|You can output '. + 'updated_order' => '成功更新菜单顺序。', + 'url' => '菜单项的 URL', + 'usage_hint' => 'You can output a menu anywhere on your site by calling|You can output '. 'this menu anywhere on your site by calling', ], 'post' => [ - 'category' => '分类目录', - 'content' => '文章内容', - 'details' => '文章详细信息', - 'excerpt' => '文章摘要 对该篇文章的简短描述', - 'image' => '文章图片', + 'category' => '分类目录', + 'content' => '文章内容', + 'details' => '文章详细信息', + 'excerpt' => '文章摘要 对该篇文章的简短描述', + 'image' => '文章图片', 'meta_description' => 'Meta Description', - 'meta_keywords' => 'Meta Keywords', - 'new' => '创建新文章', - 'seo_content' => 'SEO Content', - 'seo_title' => 'Seo Title', - 'slug' => 'URL Slug', - 'status' => '发布状态', - 'status_draft' => '草稿', - 'status_pending' => '待审核', + 'meta_keywords' => 'Meta Keywords', + 'new' => '创建新文章', + 'seo_content' => 'SEO Content', + 'seo_title' => 'Seo Title', + 'slug' => 'URL Slug', + 'status' => '发布状态', + 'status_draft' => '草稿', + 'status_pending' => '待审核', 'status_published' => '已发布', - 'title' => '文章标题', - 'title_sub' => '该篇文章的标题', - 'update' => '更新文章', + 'title' => '文章标题', + 'title_sub' => '该篇文章的标题', + 'update' => '更新文章', ], 'database' => [ - 'add_bread' => '添加 BREAD 至该表', - 'add_new_column' => '添加新列', - 'add_softdeletes' => '添加 Soft Deletes', - 'add_timestamps' => '添加时间戳', - 'already_exists' => '已存在', - 'already_exists_table' => '表 :table 已经存在', - 'bread_crud_actions' => 'BREAD / CRUD 操作', - 'bread_info' => 'BREAD 信息', - 'column' => '列', - 'composite_warning' => '警告:此列是复合索引的一部分', - 'controller_name' => 'Controller 名称', - 'controller_name_hint' => '例如:PageController,如果留空将使用自带的 BREAD Controller', - 'create_bread_for_table' => '为表 :table 创建 BREAD', - 'create_migration' => '为该表创建迁移?', - 'create_model_table' => '为该表创建模型(Model)?', - 'create_new_table' => '创建新表', - 'create_your_new_table' => '创建新表', - 'default' => '默认', - 'delete_bread' => '删除 BREAD', + 'add_bread' => '添加 BREAD 至该表', + 'add_new_column' => '添加新列', + 'add_softdeletes' => '添加 Soft Deletes', + 'add_timestamps' => '添加时间戳', + 'already_exists' => '已存在', + 'already_exists_table' => '表 :table 已经存在', + 'bread_crud_actions' => 'BREAD / CRUD 操作', + 'bread_info' => 'BREAD 信息', + 'column' => '列', + 'composite_warning' => '警告:此列是复合索引的一部分', + 'controller_name' => 'Controller 名称', + 'controller_name_hint' => '例如:PageController,如果留空将使用自带的 BREAD Controller', + 'create_bread_for_table' => '为表 :table 创建 BREAD', + 'create_migration' => '为该表创建迁移?', + 'create_model_table' => '为该表创建模型(Model)?', + 'create_new_table' => '创建新表', + 'create_your_new_table' => '创建新表', + 'default' => '默认', + 'delete_bread' => '删除 BREAD', 'delete_bread_before_table' => '请务必在删除表前先删除该表的 BREAD。', - 'delete_table_bread_conf' => '是的,删除该 BREAD', - 'delete_table_bread_quest' => '你确定要删除 :table 表的 BREAD吗?', - 'delete_table_confirm' => '是的,删除该表', - 'delete_table_question' => '您确定要删除 :table 表吗?', - 'description' => '描述', - 'display_name' => '显示名称', - 'display_name_plural' => '显示名称(复数)', - 'display_name_singular' => '显示名称(单数)', - 'edit_bread' => '编辑 BREAD', - 'edit_bread_for_table' => '编辑 BREAD :table', - 'edit_rows' => '在下方编辑 :table 行', - 'edit_table' => '在下方编辑 :table 表', - 'edit_table_not_exist' => '您想要编辑的表不存在', - 'error_creating_bread' => '很抱歉,在创建 BREAD 时出现了问题', - 'error_removing_bread' => '很抱歉,在删除 BREAD 时出现了问题', - 'error_updating_bread' => '很抱歉,在更新 BREAD 时出现了问题', - 'extra' => '额外', - 'field' => '字段', - 'field_safe_failed' => '未能保存字段 :field,正在回滚操作!', - 'generate_permissions' => '权限生成', - 'icon_class' => '用于该表的图标', - 'icon_hint' => '使用图标(可选)', - 'icon_hint2' => 'Voyager 字体类', - 'index' => 'INDEX', - 'input_type' => '输入类型', - 'key' => '键', - 'model_class' => '模型类名称', - 'model_name' => '模型名称', - 'model_name_ph' => '如果左侧留空,将尝试使用表名', - 'name_warning' => '请在添加索引之前给列命名', - 'no_composites_warning' => '此表有复合索引。请注意,他们目前不受支持。在尝试添加 / 删除索引时要小心。', - 'null' => '空', - 'optional_details' => '可选细项', - 'primary' => '主', - 'server_pagination' => '服务器端分页', - 'success_create_table' => '成功创建了:table 表', - 'success_created_bread' => '成功创建 BREAD', - 'success_delete_table' => '成功删除表 :table', - 'success_remove_bread' => '成功地从 :datatype 中移除 BREAD', - 'success_update_bread' => '成功更新 :datatype BREAD', - 'success_update_table' => '成功更新 :table 表', - 'table_actions' => '表操作', - 'table_columns' => '表列', - 'table_has_index' => '该表已经有一个主索引。', - 'table_name' => '表名', - 'table_no_columns' => '该表没有列…', - 'type' => '类型', - 'type_not_supported' => '不支持这种类型', - 'unique' => '唯一', - 'unknown_type' => '未知类型', - 'update_table' => '更新表', - 'url_slug' => 'URL Slug(必须是唯一的)', - 'url_slug_ph' => 'URL Slug(例如文章)', - 'visibility' => '可见性', + 'delete_table_bread_conf' => '是的,删除该 BREAD', + 'delete_table_bread_quest' => '你确定要删除 :table 表的 BREAD吗?', + 'delete_table_confirm' => '是的,删除该表', + 'delete_table_question' => '您确定要删除 :table 表吗?', + 'description' => '描述', + 'display_name' => '显示名称', + 'display_name_plural' => '显示名称(复数)', + 'display_name_singular' => '显示名称(单数)', + 'edit_bread' => '编辑 BREAD', + 'edit_bread_for_table' => '编辑 BREAD :table', + 'edit_rows' => '在下方编辑 :table 行', + 'edit_table' => '在下方编辑 :table 表', + 'edit_table_not_exist' => '您想要编辑的表不存在', + 'error_creating_bread' => '很抱歉,在创建 BREAD 时出现了问题', + 'error_removing_bread' => '很抱歉,在删除 BREAD 时出现了问题', + 'error_updating_bread' => '很抱歉,在更新 BREAD 时出现了问题', + 'extra' => '额外', + 'field' => '字段', + 'field_safe_failed' => '未能保存字段 :field,正在回滚操作!', + 'generate_permissions' => '权限生成', + 'icon_class' => '用于该表的图标', + 'icon_hint' => '使用图标(可选)', + 'icon_hint2' => 'Voyager 字体类', + 'index' => 'INDEX', + 'input_type' => '输入类型', + 'key' => '键', + 'model_class' => '模型类名称', + 'model_name' => '模型名称', + 'model_name_ph' => '如果左侧留空,将尝试使用表名', + 'name_warning' => '请在添加索引之前给列命名', + 'no_composites_warning' => '此表有复合索引。请注意,他们目前不受支持。在尝试添加 / 删除索引时要小心。', + 'null' => '空', + 'optional_details' => '可选细项', + 'primary' => '主', + 'server_pagination' => '服务器端分页', + 'success_create_table' => '成功创建了:table 表', + 'success_created_bread' => '成功创建 BREAD', + 'success_delete_table' => '成功删除表 :table', + 'success_remove_bread' => '成功地从 :datatype 中移除 BREAD', + 'success_update_bread' => '成功更新 :datatype BREAD', + 'success_update_table' => '成功更新 :table 表', + 'table_actions' => '表操作', + 'table_columns' => '表列', + 'table_has_index' => '该表已经有一个主索引。', + 'table_name' => '表名', + 'table_no_columns' => '该表没有列…', + 'type' => '类型', + 'type_not_supported' => '不支持这种类型', + 'unique' => '唯一', + 'unknown_type' => '未知类型', + 'update_table' => '更新表', + 'url_slug' => 'URL Slug(必须是唯一的)', + 'url_slug_ph' => 'URL Slug(例如文章)', + 'visibility' => '可见性', ], 'dimmer' => [ - 'page' => '页面|页面', + 'page' => '页面|页面', 'page_link_text' => '查看所有页面', - 'page_text' => '您有 :count :string 在数据库中。点击下面的按钮查看所有页面。', - 'post' => '文章|文章', + 'page_text' => '您有 :count :string 在数据库中。点击下面的按钮查看所有页面。', + 'post' => '文章|文章', 'post_link_text' => '查看所有的帖子', - 'post_text' => '您有 :count :string 在数据库中。点击下面的按钮查看所有文章。', - 'user' => '用户|用户', + 'post_text' => '您有 :count :string 在数据库中。点击下面的按钮查看所有文章。', + 'user' => '用户|用户', 'user_link_text' => '查看所有用户', - 'user_text' => '您有 :count :string 在数据库中。点击下面的按钮查看所有用户。', + 'user_text' => '您有 :count :string 在数据库中。点击下面的按钮查看所有用户。', ], 'form' => [ - 'field_password_keep' => '留空以保持不变', + 'field_password_keep' => '留空以保持不变', 'field_select_dd_relationship' => '确保在 :class 类的 :method 方法中设置适当的关系。', - 'type_checkbox' => '复选框', - 'type_codeeditor' => '代码编辑器', - 'type_file' => '文件', - 'type_image' => '图像', - 'type_radiobutton' => '单选按钮', - 'type_richtextbox' => '富文本框', - 'type_selectdropdown' => '选择下拉', - 'type_textarea' => '文本区域', - 'type_textbox' => '文本框', + 'type_checkbox' => '复选框', + 'type_codeeditor' => '代码编辑器', + 'type_file' => '文件', + 'type_image' => '图像', + 'type_radiobutton' => '单选按钮', + 'type_richtextbox' => '富文本框', + 'type_selectdropdown' => '选择下拉', + 'type_textarea' => '文本区域', + 'type_textbox' => '文本框', ], // DataTable translations from: https://github.com/DataTables/Plugins/tree/master/i18n -'datatable' => [ - 'sEmptyTable' => '处理中...', - 'sInfo' => '显示第 _START_ 至 _END_ 项结果,共 _TOTAL_ 项', - 'sInfoEmpty' => '显示第 0 至 0 项结果,共 0 项', - 'sInfoFiltered' => '(由 _MAX_ 项结果过滤)', - 'sInfoPostFix' => '', - 'sInfoThousands' => ',', - 'sLengthMenu' => '显示 _MENU_ 项结果', + 'datatable' => [ + 'sEmptyTable' => '处理中...', + 'sInfo' => '显示第 _START_ 至 _END_ 项结果,共 _TOTAL_ 项', + 'sInfoEmpty' => '显示第 0 至 0 项结果,共 0 项', + 'sInfoFiltered' => '(由 _MAX_ 项结果过滤)', + 'sInfoPostFix' => '', + 'sInfoThousands' => ',', + 'sLengthMenu' => '显示 _MENU_ 项结果', 'sLoadingRecords' => '载入中...', - 'sProcessing' => '处理中...', - 'sSearch' => '搜索:', - 'sZeroRecords' => '没有匹配结果', - 'oPaginate' => [ - 'sFirst' => '首页', - 'sLast' => '末页', - 'sNext' => '下页', + 'sProcessing' => '处理中...', + 'sSearch' => '搜索:', + 'sZeroRecords' => '没有匹配结果', + 'oPaginate' => [ + 'sFirst' => '首页', + 'sLast' => '末页', + 'sNext' => '下页', 'sPrevious' => '上页', ], 'oAria' => [ - 'sSortAscending' => ': 以升序排列此列', + 'sSortAscending' => ': 以升序排列此列', 'sSortDescending' => ': 以降序排列此列', ], ], 'theme' => [ - 'footer_copyright' => 'Made with by', + 'footer_copyright' => 'Made with by', 'footer_copyright2' => 'Made with rum and even more rum', ], 'json' => [ - 'invalid' => '无效的 Json', - 'invalid_message' => '看起来您引入了一些无效的 JSON', - 'valid' => '有效的 Json', + 'invalid' => '无效的 Json', + 'invalid_message' => '看起来您引入了一些无效的 JSON', + 'valid' => '有效的 Json', 'validation_errors' => '验证错误', ], 'analytics' => [ - 'by_pageview' => 'By pageview', - 'by_sessions' => 'By sessions', - 'by_users' => 'By users', + 'by_pageview' => 'By pageview', + 'by_sessions' => 'By sessions', + 'by_users' => 'By users', 'no_client_id' => 'To view analytics you\'ll need to get a google analytics client id and '. 'add it to your settings for the key google_analytics_client_id'. '. Get your key in your Google developer console:', - 'set_view' => 'Select a View', - 'this_vs_last_week' => 'This Week vs Last Week', - 'this_vs_last_year' => 'This Year vs Last Year', - 'top_browsers' => 'Top Browsers', - 'top_countries' => 'Top Countries', + 'set_view' => 'Select a View', + 'this_vs_last_week' => 'This Week vs Last Week', + 'this_vs_last_year' => 'This Year vs Last Year', + 'top_browsers' => 'Top Browsers', + 'top_countries' => 'Top Countries', 'various_visualizations' => 'Various visualizations', ], 'error' => [ - 'symlink_created_text' => '我们刚刚为您创建了缺失的软连接。', - 'symlink_created_title' => '丢失的存储软连接已被重新创建', - 'symlink_failed_text' => '我们未能为您的应用程序生成缺失的软连接,似乎您的主机提供商不支持它。', - 'symlink_failed_title' => '无法创建丢失的存储软连接', + 'symlink_created_text' => '我们刚刚为您创建了缺失的软连接。', + 'symlink_created_title' => '丢失的存储软连接已被重新创建', + 'symlink_failed_text' => '我们未能为您的应用程序生成缺失的软连接,似乎您的主机提供商不支持它。', + 'symlink_failed_title' => '无法创建丢失的存储软连接', 'symlink_missing_button' => '修复', - 'symlink_missing_text' => '我们找不到一个存储软连接,这可能会导致'. + 'symlink_missing_text' => '我们找不到一个存储软连接,这可能会导致'. '从浏览器加载媒体文件的问题。', 'symlink_missing_title' => '缺失的存储软连接', ], diff --git a/public/composer/install.php b/public/composer/install.php index 828877142..0502a6c69 100644 --- a/public/composer/install.php +++ b/public/composer/install.php @@ -4,7 +4,7 @@ $projectRoot = dirname(getcwd()); // Define the path to the autoload file -$autoloadPath = $projectRoot . '/vendor/autoload.php'; +$autoloadPath = $projectRoot.'/vendor/autoload.php'; $process = null; @@ -12,30 +12,34 @@ $os = null; -function copyEnv($projectRoot){ - $envFile = $projectRoot . '/.env'; - $envExample = $projectRoot . '/.env.example'; +function copyEnv($projectRoot) +{ + $envFile = $projectRoot.'/.env'; + $envExample = $projectRoot.'/.env.example'; // Check if the .env file exists, if not, copy .env.example to .env - if (!file_exists($envFile)) { + if (! file_exists($envFile)) { copy($envExample, $envFile); } } -function redirectIfNotHomepage() { - $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? "https://" : "http://"; +function redirectIfNotHomepage() +{ + $protocol = (! empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? 'https://' : 'http://'; $domainName = $_SERVER['HTTP_HOST']; $urlPath = $_SERVER['REQUEST_URI']; if ($urlPath !== '/') { - header('Location: ' . $protocol . $domainName); + header('Location: '.$protocol.$domainName); exit; } - return $protocol . $domainName; + + return $protocol.$domainName; } -function getOperatingSystem() { +function getOperatingSystem() +{ $os = PHP_OS; - + if (stripos($os, 'DAR') !== false || stripos($os, 'MAC') !== false) { return 'Mac'; } elseif (stripos($os, 'WIN') !== false) { @@ -47,21 +51,22 @@ function getOperatingSystem() { } } -function convertSlashes($path) { +function convertSlashes($path) +{ return str_replace('/', '\\', $path); } // Check if the autoload file exists -if (!file_exists($autoloadPath)) { +if (! file_exists($autoloadPath)) { redirectIfNotHomepage(); $os = getOperatingSystem(); copyEnv($projectRoot); // Change to the project root directory - if (!chdir($projectRoot)) { + if (! chdir($projectRoot)) { http_response_code(500); - echo "Failed to change directory to project root."; + echo 'Failed to change directory to project root.'; exit(1); } @@ -82,22 +87,22 @@ function convertSlashes($path) { $binDir = preg_replace('/\/bin\/.+$/', '/bin', $normalizedPhpBinaryPath); // Append 'php' to the directory path, using the correct path separator - $phpPath = dirname($normalizedPhpBinaryPath) . '/php'; + $phpPath = dirname($normalizedPhpBinaryPath).'/php'; - $phpPath = ($os == 'Windows') ? convertSlashes($phpPath) . '.exe' : $phpPath; + $phpPath = ($os == 'Windows') ? convertSlashes($phpPath).'.exe' : $phpPath; // Check if the PHP binary exists - if (!file_exists($phpPath)) { + if (! file_exists($phpPath)) { http_response_code(500); echo "PHP binary not found at specified path: $phpPath. Please ensure PHP is installed."; exit(1); } - $composerPath = $binDir . '/composer'; - $composerPath = ($os == 'Windows') ? convertSlashes($composerPath) . '.phar' : $composerPath; + $composerPath = $binDir.'/composer'; + $composerPath = ($os == 'Windows') ? convertSlashes($composerPath).'.phar' : $composerPath; // Check if the Composer binary exists - if (!file_exists($composerPath)) { + if (! file_exists($composerPath)) { http_response_code(500); echo "Composer binary not found at specified path: $composerPath. Please ensure Composer is installed."; exit(1); @@ -106,13 +111,13 @@ function convertSlashes($path) { $commandSeparator = ($os == 'Windows') ? '&' : '&&'; // Run composer install with explicit working directory $command = "cd \"$projectRoot\" $commandSeparator \"$phpPath\" \"$composerPath\" install 2>&1"; - // If we are on a windows machine we need to convert the Paths \ to / in the command + // If we are on a windows machine we need to convert the Paths \ to / in the command $command = ($os == 'Windows') ? convertSlashes($command) : $command; - + if ($os == 'Windows') { - $batFilePath = $projectRoot . '\public\composerinstall.bat'; - $combinedOutputFile = $projectRoot . '\public\combined_output.txt'; - $debugFile = $projectRoot . '\public\debug.txt'; + $batFilePath = $projectRoot.'\public\composerinstall.bat'; + $combinedOutputFile = $projectRoot.'\public\combined_output.txt'; + $debugFile = $projectRoot.'\public\debug.txt'; // Write the command to the batch file with debugging information $batchContent = <<> "$combinedOutputFile" EOT; file_put_contents($batFilePath, $batchContent); - + // Log the batch file creation and content for debugging file_put_contents($debugFile, "Batch file created at: $batFilePath\n"); file_put_contents($debugFile, "Batch file content:\n$batchContent\n", FILE_APPEND); - - function runCmd($cmd) { + + function runCmd($cmd) + { $externalProcess = popen($cmd, 'r'); + return $externalProcess; } - + // Start the batch file $process = runCmd("start /B cmd /C $batFilePath"); - + // Check if the batch file was started successfully - if (!$process) { + if (! $process) { http_response_code(500); - echo "Failed to start the batch file process."; + echo 'Failed to start the batch file process.'; exit(1); } - + // Log the batch file execution for debugging file_put_contents($debugFile, "Batch file execution started.\n", FILE_APPEND); } else { @@ -150,15 +157,15 @@ function runCmd($cmd) { } if ($os == 'Windows') { - require_once __DIR__ . '/windows.php'; + require_once __DIR__.'/windows.php'; } elseif ($os == 'Mac') { - require_once __DIR__ . '/mac.php'; + require_once __DIR__.'/mac.php'; } elseif ($os == 'Linux') { // We can use the mac installation for linux machines - require_once __DIR__ . '/mac.php'; + require_once __DIR__.'/mac.php'; } else { - die('OS not supported, Please run composer install and come back to this page.'); + exit('OS not supported, Please run composer install and come back to this page.'); } exit(1); -} \ No newline at end of file +} diff --git a/public/composer/mac.php b/public/composer/mac.php index 14f9c2d6d..26ffcb23e 100644 --- a/public/composer/mac.php +++ b/public/composer/mac.php @@ -37,15 +37,15 @@ function addParagraph(content) { addParagraph(' . json_encode(nl2br(htmlspecialchars($output))) . ');'; + echo ''; flush(); // Ensure the output is sent to the browser immediately } usleep(100000); // Slight delay to reduce CPU usage @@ -56,9 +56,9 @@ function addParagraph(content) { // Check if the process was opened successfully if (is_resource($process)) { // Stream the output in real-time - while (!feof($process)) { + while (! feof($process)) { $output = fread($process, 4096); - echo ''; + echo ''; flush(); // Ensure the output is sent to the browser immediately } @@ -67,14 +67,14 @@ function addParagraph(content) { } } - sleep(3); + sleep(3); - // Check for errors - if (isset($returnVar) && $returnVar !== 0) { - http_response_code(500); - echo "

Composer install failed. Please make sure you meet the minimum requirements

"; - exit(1); - } + // Check for errors + if (isset($returnVar) && $returnVar !== 0) { + http_response_code(500); + echo "

Composer install failed. Please make sure you meet the minimum requirements

"; + exit(1); + } ?>