diff --git a/.all-contributorsrc b/.all-contributorsrc index 24aa022c2..d7624a431 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -3115,7 +3115,8 @@ "avatar_url": "https://avatars.githubusercontent.com/u/23613427?v=4", "profile": "https://github.com/bryanlopezinc", "contributions": [ - "code" + "code", + "test" ] }, { @@ -3126,6 +3127,15 @@ "contributions": [ "code" ] + }, + { + "login": "Tyree", + "name": "Matt Tyree", + "avatar_url": "https://avatars.githubusercontent.com/u/5395363?v=4", + "profile": "https://github.com/Tyree", + "contributions": [ + "doc" + ] } ] } diff --git a/.github/workflows/docker-alpine.yml b/.github/workflows/docker-alpine.yml index 7223ab30d..bd46f9567 100644 --- a/.github/workflows/docker-alpine.yml +++ b/.github/workflows/docker-alpine.yml @@ -73,7 +73,7 @@ jobs: # https://github.com/docker/build-push-action - name: Build and push 'snipe-it' image id: docker_build - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . file: ./Dockerfile.alpine diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 18d055627..adb87f3a5 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -73,7 +73,7 @@ jobs: # https://github.com/docker/build-push-action - name: Build and push 'snipe-it' image id: docker_build - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . file: ./Dockerfile diff --git a/.github/workflows/tests-mysql.yml b/.github/workflows/tests-mysql.yml index 68078aaca..737a86dca 100644 --- a/.github/workflows/tests-mysql.yml +++ b/.github/workflows/tests-mysql.yml @@ -27,6 +27,7 @@ jobs: php-version: - "8.1" - "8.2" + - "8.3" name: PHP ${{ matrix.php-version }} diff --git a/.upgrade_requirements.json b/.upgrade_requirements.json index 777006d92..53d7337b6 100644 --- a/.upgrade_requirements.json +++ b/.upgrade_requirements.json @@ -4,7 +4,7 @@ "DOC3": "Please don't rely on these versions for planning upgrades unless you've fetched the most recent version", "DOC4": "You should really just ignore it and run upgrade.php. Really", "php_min_version": "8.1.0", - "php_max_major_minor": "8.2", + "php_max_major_minor": "8.3", "php_max_wontwork": "8.4.0", "current_snipeit_version": "7.0" } diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 355b50c58..c0ca7951d 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -444,10 +444,11 @@ Thanks goes to all of these wonderful people ([emoji key](https://github.com/ken i_virus
i_virus

💻 Paul Grime
Paul Grime

💻 Lee Porte
Lee Porte

💻 - BRYAN
BRYAN

💻 + BRYAN
BRYAN

💻 ⚠️ U-H-T
U-H-T

💻 + Matt Tyree
Matt Tyree

📖 diff --git a/app/Http/Controllers/Api/LocationsController.php b/app/Http/Controllers/Api/LocationsController.php index b46c13e13..78cf43c67 100644 --- a/app/Http/Controllers/Api/LocationsController.php +++ b/app/Http/Controllers/Api/LocationsController.php @@ -244,7 +244,7 @@ class LocationsController extends Controller if (! $location->isDeletable()) { return response() - ->json(Helper::formatStandardApiResponse('error', null, trans('admin/companies/message.assoc_users'))); + ->json(Helper::formatStandardApiResponse('error', null, trans('admin/locations/message.assoc_users'))); } $this->authorize('delete', $location); $location->delete(); diff --git a/app/Http/Controllers/Api/ReportsController.php b/app/Http/Controllers/Api/ReportsController.php index fbeb78fc8..8761c9442 100644 --- a/app/Http/Controllers/Api/ReportsController.php +++ b/app/Http/Controllers/Api/ReportsController.php @@ -78,13 +78,14 @@ class ReportsController extends Controller ]; + $total = $actionlogs->count(); // Make sure the offset and limit are actually integers and do not exceed system limits - $offset = ($request->input('offset') > $actionlogs->count()) ? $actionlogs->count() : app('api_offset_value'); + $offset = ($request->input('offset') > $total) ? $total : app('api_offset_value'); $limit = app('api_limit_value'); $sort = in_array($request->input('sort'), $allowed_columns) ? e($request->input('sort')) : 'created_at'; $order = ($request->input('order') == 'asc') ? 'asc' : 'desc'; - $total = $actionlogs->count(); + $actionlogs = $actionlogs->orderBy($sort, $order)->skip($offset)->take($limit)->get(); diff --git a/app/Http/Controllers/Api/UsersController.php b/app/Http/Controllers/Api/UsersController.php index 81229d78b..bd90ab856 100644 --- a/app/Http/Controllers/Api/UsersController.php +++ b/app/Http/Controllers/Api/UsersController.php @@ -13,6 +13,8 @@ use App\Http\Transformers\SelectlistTransformer; use App\Http\Transformers\UsersTransformer; use App\Models\Actionlog; use App\Models\Asset; +use App\Models\Accessory; +use App\Models\Consumable; use App\Models\License; use App\Models\User; use App\Notifications\CurrentInventory; @@ -31,7 +33,7 @@ class UsersController extends Controller * @author [A. Gianotto] [] * @since [v4.0] * - * @return \Illuminate\Http\Response + * @return array */ public function index(Request $request) { @@ -75,7 +77,7 @@ class UsersController extends Controller 'users.autoassign_licenses', 'users.website', - ])->with('manager', 'groups', 'userloc', 'company', 'department', 'assets', 'licenses', 'accessories', 'consumables', 'createdBy') + ])->with('manager', 'groups', 'userloc', 'company', 'department', 'assets', 'licenses', 'accessories', 'consumables', 'createdBy', 'managesUsers', 'managedLocations') ->withCount('assets as assets_count', 'licenses as licenses_count', 'accessories as accessories_count', 'consumables as consumables_count', 'managesUsers as manages_users_count', 'managedLocations as manages_locations_count'); @@ -203,9 +205,6 @@ class UsersController extends Controller $users->where('autoassign_licenses', '=', $request->input('autoassign_licenses')); } - if ($request->filled('location_id') != '') { - $users = $users->UserLocation($request->input('location_id'), $request->input('search')); - } if (($request->filled('deleted')) && ($request->input('deleted') == 'true')) { $users = $users->onlyTrashed(); @@ -362,7 +361,7 @@ class UsersController extends Controller * @author [A. Gianotto] [] * @since [v4.0] * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response + * @return array | \Illuminate\Http\JsonResponse */ public function store(SaveUserRequest $request) { @@ -409,7 +408,7 @@ class UsersController extends Controller * * @author [A. Gianotto] [] * @param int $id - * @return \Illuminate\Http\Response + * @return array | \Illuminate\Http\JsonResponse */ public function show($id) { @@ -432,7 +431,7 @@ class UsersController extends Controller * @since [v4.0] * @param \Illuminate\Http\Request $request * @param int $id - * @return \Illuminate\Http\Response + * @return \Illuminate\Http\JsonResponse */ public function update(SaveUserRequest $request, $id) { @@ -517,18 +516,16 @@ class UsersController extends Controller * @author [A. Gianotto] [] * @since [v4.0] * @param int $id - * @return \Illuminate\Http\Response + * @return \Illuminate\Http\JsonResponse */ public function destroy(DeleteUserRequest $request, $id) { $this->authorize('delete', User::class); - $user = User::with('assets', 'assets.model', 'consumables', 'accessories', 'licenses', 'userloc')->withTrashed()->find($id); - $this->authorize('delete', $user); + if ($user = User::withTrashed()->find($id)) { + $this->authorize('delete', $user); - if ($user) { - if ($user->delete()) { // Remove the user's avatar if they have one @@ -542,11 +539,12 @@ class UsersController extends Controller return response()->json(Helper::formatStandardApiResponse('success', null, trans('admin/users/message.success.delete'))); } + return response()->json(Helper::formatStandardApiResponse('error', null, trans('admin/users/message.error.delete'))); } - return response()->json(Helper::formatStandardApiResponse('error', null, trans('admin/users/message.user_not_found', compact('id')))); + return response()->json(Helper::formatStandardApiResponse('error', null, trans('admin/users/message.user_not_found'))); } @@ -556,7 +554,7 @@ class UsersController extends Controller * @author [A. Gianotto] [] * @since [v3.0] * @param $userId - * @return string JSON + * @return array | \Illuminate\Http\JsonResponse */ public function assets(Request $request, $id) { @@ -629,14 +627,14 @@ class UsersController extends Controller * @author [A. Gianotto] [] * @since [v3.0] * @param $userId - * @return string JSON + * @return array | \Illuminate\Http\JsonResponse */ public function consumables(Request $request, $id) { $this->authorize('view', User::class); $this->authorize('view', Consumable::class); $user = User::findOrFail($id); - $this->authorize('update', $user); + $this->authorize('view', $user); $consumables = $user->consumables; return (new ConsumablesTransformer)->transformConsumables($consumables, $consumables->count(), $request); } @@ -647,7 +645,7 @@ class UsersController extends Controller * @author [A. Gianotto] [] * @since [v4.6.14] * @param $userId - * @return string JSON + * @return array */ public function accessories($id) { @@ -666,7 +664,7 @@ class UsersController extends Controller * @author [N. Mathar] [] * @since [v5.0] * @param $userId - * @return string JSON + * @return array | \Illuminate\Http\JsonResponse */ public function licenses($id) { @@ -729,7 +727,7 @@ class UsersController extends Controller * @author [Juan Font] [] * @since [v4.4.2] * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response + * @return array */ public function getCurrentUserInfo(Request $request) { @@ -742,12 +740,14 @@ class UsersController extends Controller * @author [E. Taylor] [] * @param int $userId * @since [v6.0.0] - * @return JsonResponse + * @return \Illuminate\Http\JsonResponse */ - public function restore($userId = null) + public function restore($userId) { + $this->authorize('delete', User::class); if ($user = User::withTrashed()->find($userId)) { + $this->authorize('delete', $user); if ($user->deleted_at == '') { @@ -766,8 +766,6 @@ class UsersController extends Controller return response()->json(Helper::formatStandardApiResponse('success', null, trans('admin/users/message.success.restored')), 200); } - // Check validation to make sure we're not restoring a user with the same username as an existing user - return response()->json(Helper::formatStandardApiResponse('error', null, $user->getErrors())); } return response()->json(Helper::formatStandardApiResponse('error', null, trans('admin/users/message.user_not_found')), 200); diff --git a/app/Http/Controllers/Auth/LoginController.php b/app/Http/Controllers/Auth/LoginController.php index 21617681f..ac19a57a7 100644 --- a/app/Http/Controllers/Auth/LoginController.php +++ b/app/Http/Controllers/Auth/LoginController.php @@ -427,10 +427,6 @@ class LoginController extends Controller return redirect()->route('two-factor')->with('error', trans('auth/message.two_factor.code_required')); } - if (! $request->has('two_factor_secret')) { // TODO this seems almost the same as above? - return redirect()->route('two-factor')->with('error', 'Two-factor code is required.'); - } - $user = Auth::user(); $secret = $request->input('two_factor_secret'); @@ -439,7 +435,7 @@ class LoginController extends Controller $user->saveQuietly(); $request->session()->put('2fa_authed', $user->id); - return redirect()->route('home')->with('success', 'You are logged in!'); + return redirect()->route('home')->with('success', trans('auth/message.signin.success')); } return redirect()->route('two-factor')->with('error', trans('auth/message.two_factor.invalid_code')); @@ -537,7 +533,7 @@ class LoginController extends Controller $minutes = round($seconds / 60); - $message = \Lang::get('auth/message.throttle', ['minutes' => $minutes]); + $message = trans('auth/message.throttle', ['minutes' => $minutes]); return redirect()->back() ->withInput($request->only($this->username(), 'remember')) diff --git a/app/Http/Controllers/ProfileController.php b/app/Http/Controllers/ProfileController.php index 0b1bce76a..72179161f 100755 --- a/app/Http/Controllers/ProfileController.php +++ b/app/Http/Controllers/ProfileController.php @@ -28,8 +28,8 @@ class ProfileController extends Controller */ public function getIndex() { + $this->authorize('self.profile'); $user = Auth::user(); - return view('account/profile', compact('user')); } @@ -42,6 +42,7 @@ class ProfileController extends Controller */ public function postIndex(ImageUploadRequest $request) { + $this->authorize('self.profile'); $user = Auth::user(); $user->first_name = $request->input('first_name'); $user->last_name = $request->input('last_name'); @@ -67,7 +68,7 @@ class ProfileController extends Controller if ($user->save()) { - return redirect()->route('profile')->with('success', trans('account.general.profile_updated')); + return redirect()->route('profile')->with('success', trans('account/general.profile_updated')); } return redirect()->back()->withInput()->withErrors($user->getErrors()); diff --git a/app/Http/Controllers/ReportsController.php b/app/Http/Controllers/ReportsController.php index bcf4b794e..67a73d0dc 100644 --- a/app/Http/Controllers/ReportsController.php +++ b/app/Http/Controllers/ReportsController.php @@ -933,7 +933,7 @@ class ReportsController extends Controller $diff = ($asset->purchase_cost - $depreciation); $row[] = Helper::formatCurrencyOutput($depreciation); $row[] = Helper::formatCurrencyOutput($diff); - $row[] = ($asset->depreciation) ? $asset->depreciated_date()->format('Y-m-d') : ''; + $row[] = (($asset->depreciation) && ($asset->depreciated_date())) ? $asset->depreciated_date()->format('Y-m-d') : ''; } if ($request->filled('checkout_date')) { diff --git a/app/Http/Controllers/SettingsController.php b/app/Http/Controllers/SettingsController.php index 26ab2b2a8..a3c3cab8f 100755 --- a/app/Http/Controllers/SettingsController.php +++ b/app/Http/Controllers/SettingsController.php @@ -25,6 +25,7 @@ use Illuminate\Support\Facades\Artisan; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\Crypt; use Illuminate\Support\Facades\DB; +use Illuminate\Support\Facades\File; use Illuminate\Support\Facades\Http; use Illuminate\Support\Facades\Log; use Illuminate\Support\Facades\URL; @@ -106,17 +107,7 @@ class SettingsController extends Controller $start_settings['owner_is_admin'] = false; } - if ((is_writable(storage_path())) - && (is_writable(storage_path().'/framework')) - && (is_writable(storage_path().'/framework/cache')) - && (is_writable(storage_path().'/framework/sessions')) - && (is_writable(storage_path().'/framework/views')) - && (is_writable(storage_path().'/logs')) - ) { - $start_settings['writable'] = true; - } else { - $start_settings['writable'] = false; - } + $start_settings['writable'] = $this->storagePathIsWritable(); $start_settings['gd'] = extension_loaded('gd'); @@ -145,6 +136,19 @@ class SettingsController extends Controller } } + /** + * Determine if the app storage path is writable. + */ + protected function storagePathIsWritable(): bool + { + return File::isWritable(storage_path()) && + File::isWritable(storage_path('framework')) && + File::isWritable(storage_path('framework/cache')) && + File::isWritable(storage_path('framework/sessions')) && + File::isWritable(storage_path('framework/views')) && + File::isWritable(storage_path('logs')); + } + /** * Save the first admin user from Setup. * @@ -347,9 +351,9 @@ class SettingsController extends Controller $setting->load_remote = $request->input('load_remote', 0); $setting->thumbnail_max_h = $request->input('thumbnail_max_h'); $setting->privacy_policy_link = $request->input('privacy_policy_link'); - $setting->depreciation_method = $request->input('depreciation_method'); $setting->dash_chart_type = $request->input('dash_chart_type'); + $setting->profile_edit = $request->input('profile_edit', 0); if ($request->input('per_page') != '') { $setting->per_page = $request->input('per_page'); diff --git a/app/Http/Controllers/Users/UsersController.php b/app/Http/Controllers/Users/UsersController.php index a82993f04..0b16dd0a9 100755 --- a/app/Http/Controllers/Users/UsersController.php +++ b/app/Http/Controllers/Users/UsersController.php @@ -17,7 +17,9 @@ use App\Notifications\WelcomeNotification; use Illuminate\Support\Facades\Auth; use Illuminate\Database\Eloquent\ModelNotFoundException; use Illuminate\Http\Request; +use Illuminate\Support\Facades\Log; use Illuminate\Support\Facades\Password; +use Illuminate\Support\Facades\Storage; use Redirect; use Str; use Symfony\Component\HttpFoundation\StreamedResponse; @@ -333,19 +335,24 @@ class UsersController extends Controller */ public function destroy(DeleteUserRequest $request, $id = null) { - $this->authorize('delete', User::class); - $user = User::with('assets', 'assets.model', 'consumables', 'accessories', 'licenses', 'userloc'); + if ($user = User::find($id)) { - if (($user) && ($user->deleted_at = '')) { - // Delete the user - $user->delete(); - return redirect()->route('users.index')->with('success', trans('admin/users/message.success.delete')); + $this->authorize('delete', $user); + + if ($user->delete()) { + if (Storage::disk('public')->exists('avatars/' . $user->avatar)) { + try { + Storage::disk('public')->delete('avatars/' . $user->avatar); + } catch (\Exception $e) { + Log::debug($e); + } + } + return redirect()->route('users.index')->with('success', trans('admin/users/message.success.delete')); + } } - - return redirect()->route('users.index') - ->with('error', trans('admin/users/message.user_not_found', compact('id'))); + return redirect()->route('users.index')->with('error', trans('admin/users/message.user_not_found')); } @@ -599,6 +606,7 @@ class UsersController extends Controller { $this->authorize('view', User::class); $user = User::where('id', $id)->withTrashed()->first(); + // Make sure they can view this particular user $this->authorize('view', $user); @@ -655,6 +663,8 @@ class UsersController extends Controller */ public function sendPasswordReset($id) { + $this->authorize('view', User::class); + if (($user = User::find($id)) && ($user->activated == '1') && ($user->email != '') && ($user->ldap_import == '0')) { $credentials = ['email' => trim($user->email)]; diff --git a/app/Http/Middleware/CheckForTwoFactor.php b/app/Http/Middleware/CheckForTwoFactor.php index d6e9faa0e..7846d00ad 100644 --- a/app/Http/Middleware/CheckForTwoFactor.php +++ b/app/Http/Middleware/CheckForTwoFactor.php @@ -49,10 +49,10 @@ class CheckForTwoFactor // Otherwise make sure they're enrolled and show them the 2FA code screen if ((Auth::user()->two_factor_secret != '') && (Auth::user()->two_factor_enrolled == '1')) { - return redirect()->route('two-factor')->with('info', 'Please enter your two-factor authentication code.'); + return redirect()->route('two-factor')->with('info', trans('auth/message.two_factor.enter_two_factor_code')); } - return redirect()->route('two-factor-enroll')->with('success', 'Please enroll a device in two-factor authentication.'); + return redirect()->route('two-factor-enroll')->with('success', trans('auth/message.two_factor.please_enroll')); } } diff --git a/app/Http/Requests/DeleteUserRequest.php b/app/Http/Requests/DeleteUserRequest.php index 8136bd68e..282919d7a 100644 --- a/app/Http/Requests/DeleteUserRequest.php +++ b/app/Http/Requests/DeleteUserRequest.php @@ -6,7 +6,7 @@ use Illuminate\Foundation\Http\FormRequest; use Illuminate\Validation\Rule; use Illuminate\Support\Facades\Auth; use App\Models\User; -use Illuminate\Http\Request; +use Illuminate\Support\Facades\Gate; class DeleteUserRequest extends FormRequest @@ -19,18 +19,12 @@ class DeleteUserRequest extends FormRequest */ public function authorize(): bool { - return true; + return Gate::allows('delete', User::class); } - /** - * Get the validation rules that apply to the request. - * - * @return array|string> - */ - public function rules(): array + public function prepareForValidation(): void { - - $user_to_delete = User::find(request()->route('user')); + $user_to_delete = User::withTrashed()->find(request()->route('user')); if ($user_to_delete) { $this->merge([ @@ -41,30 +35,41 @@ class DeleteUserRequest extends FormRequest 'assigned_assets' => $user_to_delete->assets()->count(), 'assigned_licenses' => $user_to_delete->licenses()->count(), 'assigned_accessories' => $user_to_delete->accessories()->count(), + 'deleted_at' => $user_to_delete->deleted_at, ]); } + } + /** + * Get the validation rules that apply to the request. + * + * @return array|string> + */ + public function rules(): array + { return [ - 'id' => ['exists:users,id'], - 'user' => Rule::notIn([Auth::user()->id]), + 'user' => Rule::notIn([auth()->user()->id]), 'managed_users' => Rule::in([0]), 'managed_locations' => Rule::in([0]), 'assigned_assets' => Rule::in([0]), 'assigned_licenses' => Rule::in([0]), 'assigned_accessories' => Rule::in([0]), + 'deleted_at' => Rule::in([null]), ]; } public function messages(): array { - $user_to_delete = User::find(request()->route('user')); - $messages = ['id.exists' => trans('admin/users/message.user_not_found')]; + $user_to_delete = User::withTrashed()->find(request()->route('user')); + $messages = []; if ($user_to_delete) { $messages = array_merge([ + 'user.exists' => trans('admin/users/message.user_not_found'), + // Cannot delete yourself 'user.not_in' => trans('admin/users/message.error.cannot_delete_yourself'), @@ -84,6 +89,8 @@ class DeleteUserRequest extends FormRequest // assigned accessories is not 0 'assigned_accessories.in' => trans_choice('admin/users/message.error.delete_has_accessories_var', $user_to_delete->accessories()->count(), ['count' => $user_to_delete->accessories()->count()]), + 'deleted_at.in' => trans('admin/users/message.user_deleted_warning'), + ], $messages); } diff --git a/app/Http/Transformers/ActionlogsTransformer.php b/app/Http/Transformers/ActionlogsTransformer.php index 9000f9a01..ef00c7447 100644 --- a/app/Http/Transformers/ActionlogsTransformer.php +++ b/app/Http/Transformers/ActionlogsTransformer.php @@ -49,7 +49,12 @@ class ActionlogsTransformer public function transformActionlog (Actionlog $actionlog, $settings = null) { $icon = $actionlog->present()->icon(); - $custom_fields = CustomField::all(); + + static $custom_fields = false; + + if ($custom_fields === false) { + $custom_fields = CustomField::all(); + } if ($actionlog->filename!='') { $icon = Helper::filetype_icon($actionlog->filename); @@ -217,13 +222,30 @@ class ActionlogsTransformer */ public function changedInfo(array $clean_meta) - { $location = Location::withTrashed()->get(); - $supplier = Supplier::withTrashed()->get(); - $model = AssetModel::withTrashed()->get(); - $status = Statuslabel::withTrashed()->get(); - $company = Company::get(); + { + static $location = false; + static $supplier = false; + static $model = false; + static $status = false; + static $company = false; + if ($location === false) { + $location = Location::select('id', 'name')->withTrashed()->get(); + } + if ($supplier === false) { + $supplier = Supplier::select('id', 'name')->withTrashed()->get(); + } + if ($model === false) { + $model = AssetModel::select('id', 'name')->withTrashed()->get(); + } + if ($status === false) { + $status = Statuslabel::select('id', 'name')->withTrashed()->get(); + } + if ($company === false) { + $company = Company::select('id', 'name')->get(); + } + if(array_key_exists('rtd_location_id',$clean_meta)) { $oldRtd = $location->find($clean_meta['rtd_location_id']['old']); diff --git a/app/Importer/AssetImporter.php b/app/Importer/AssetImporter.php index 40dbf87f2..02ffa2077 100644 --- a/app/Importer/AssetImporter.php +++ b/app/Importer/AssetImporter.php @@ -20,7 +20,9 @@ class AssetImporter extends ItemImporter { parent::__construct($filename); - if (!is_null(Statuslabel::first())) { + $this->defaultStatusLabelId = Statuslabel::first()->id; + + if (!is_null(Statuslabel::deployable()->first())) { $this->defaultStatusLabelId = Statuslabel::deployable()->first()->id; } } @@ -102,7 +104,7 @@ class AssetImporter extends ItemImporter $this->item['expected_checkin'] = trim($this->findCsvMatch($row, 'expected_checkin')); $this->item['last_audit_date'] = trim($this->findCsvMatch($row, 'last_audit_date')); $this->item['next_audit_date'] = trim($this->findCsvMatch($row, 'next_audit_date')); - $this->item['asset_eol_date'] = trim($this->findCsvMatch($row, 'next_audit_date')); + $this->item['asset_eol_date'] = trim($this->findCsvMatch($row, 'asset_eol_date')); $this->item['asset_tag'] = $asset_tag; // We need to save the user if it exists so that we can checkout to user later. diff --git a/app/Models/Asset.php b/app/Models/Asset.php index 0ef88c5c4..a3d603551 100644 --- a/app/Models/Asset.php +++ b/app/Models/Asset.php @@ -62,6 +62,12 @@ class Asset extends Depreciable */ protected $table = 'assets'; + /** + * Leaving this commented out, since we need to test further, but this would eager load the model relationship every single + * time the asset model is loaded. + */ + // protected $with = ['model']; + /** * Whether the model should inject it's identifier to the unique * validation rules before attempting validation. If this property @@ -147,7 +153,7 @@ class Asset extends Depreciable 'expected_checkin', 'byod', 'asset_eol_date', - 'eol_explicit', + 'eol_explicit', 'last_audit_date', 'next_audit_date', 'asset_eol_date', @@ -159,21 +165,21 @@ class Asset extends Depreciable /** * The attributes that should be included when searching the model. - * + * * @var array */ protected $searchableAttributes = [ - 'name', - 'asset_tag', - 'serial', - 'order_number', - 'purchase_cost', - 'notes', + 'name', + 'asset_tag', + 'serial', + 'order_number', + 'purchase_cost', + 'notes', 'created_at', - 'updated_at', - 'purchase_date', - 'expected_checkin', - 'next_audit_date', + 'updated_at', + 'purchase_date', + 'expected_checkin', + 'next_audit_date', 'last_audit_date', 'last_checkin', 'last_checkout', @@ -182,7 +188,7 @@ class Asset extends Depreciable /** * The relations and their attributes that should be included when searching the model. - * + * * @var array */ protected $searchableRelations = [ @@ -295,7 +301,7 @@ class Asset extends Depreciable // The asset status is not archived and is deployable if (($this->assetstatus) && ($this->assetstatus->archived == '0') - && ($this->assetstatus->deployable == '1')) + && ($this->assetstatus->deployable == '1')) { return true; @@ -568,7 +574,7 @@ class Asset extends Depreciable */ public function assignedType() { - return strtolower(class_basename($this->assigned_type)); + return $this->assigned_type ? strtolower(class_basename($this->assigned_type)) : null; } @@ -852,11 +858,11 @@ class Asset extends Depreciable foreach ($assets as $asset) { $results = preg_match("/\d+$/", $asset['asset_tag'], $matches); - if ($results) + if ($results) { $number = $matches[0]; - if ($number > $max) + if ($number > $max) { $max = $number; } @@ -984,6 +990,14 @@ class Asset extends Depreciable ); } + protected function lastAuditDate(): Attribute + { + return Attribute::make( + get: fn ($value) => $value ? Carbon::parse($value)->format('Y-m-d H:i:s') : null, + set: fn ($value) => $value ? Carbon::parse($value)->format('Y-m-d H:i:s') : null, + ); + } + protected function lastCheckout(): Attribute { return Attribute::make( diff --git a/app/Models/Depreciable.php b/app/Models/Depreciable.php index cfc42aa94..721135873 100644 --- a/app/Models/Depreciable.php +++ b/app/Models/Depreciable.php @@ -173,10 +173,14 @@ class Depreciable extends SnipeModel public function depreciated_date() { - $date = date_create($this->purchase_date); - date_add($date, date_interval_create_from_date_string($this->get_depreciation()->months.' months')); + if (($this->purchase_date) && ($this->get_depreciation())) { + $date = date_create($this->purchase_date); + + return date_add($date, date_interval_create_from_date_string($this->get_depreciation()->months.' months'));//date_format($date, 'Y-m-d'); //don't bake-in format, for internationalization + } + + return null; - return $date; //date_format($date, 'Y-m-d'); //don't bake-in format, for internationalization } // it's necessary for unit tests diff --git a/app/Models/User.php b/app/Models/User.php index 438f432c5..30e32061e 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -204,6 +204,23 @@ class User extends SnipeModel implements AuthenticatableContract, AuthorizableCo return $this->checkPermissionSection('superuser'); } + + /** + * Checks if the can edit their own profile + * + * @author A. Gianotto + * @since [v6.3.4] + * @return bool + */ + public function canEditProfile() : bool { + + $setting = Setting::getSettings(); + if ($setting->profile_edit == 1) { + return true; + } + return false; + } + /** * Checks if the user is deletable * @@ -572,7 +589,6 @@ class User extends SnipeModel implements AuthenticatableContract, AuthorizableCo if ($format=='firstname.lastname') { $username = str_slug($first_name) . '.' . str_slug($last_name); - } elseif ($format == 'lastnamefirstinitial') { $username = str_slug($last_name.substr($first_name, 0, 1)); } elseif ($format == 'firstintial.lastname') { @@ -589,7 +605,9 @@ class User extends SnipeModel implements AuthenticatableContract, AuthorizableCo $username = str_slug($first_name).str_slug($last_name); } elseif ($format == 'firstnamelastinitial') { $username = str_slug(($first_name.substr($last_name, 0, 1))); - } + } elseif ($format == 'lastname.firstname') { + $username = str_slug($last_name).'.'.str_slug($first_name); + } } $user['first_name'] = $first_name; diff --git a/app/Observers/AssetObserver.php b/app/Observers/AssetObserver.php index 242102c4e..f77c4cc00 100644 --- a/app/Observers/AssetObserver.php +++ b/app/Observers/AssetObserver.php @@ -92,7 +92,7 @@ class AssetObserver // only modify the 'next' one if it's *bigger* than the stored base // - if($next_asset_tag > $settings->next_auto_tag_base) { + if ($next_asset_tag > $settings->next_auto_tag_base && $next_asset_tag < PHP_INT_MAX) { $settings->next_auto_tag_base = $next_asset_tag; $settings->save(); } diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php index 367a42b5a..aa2604bce 100644 --- a/app/Providers/AppServiceProvider.php +++ b/app/Providers/AppServiceProvider.php @@ -21,6 +21,7 @@ use Illuminate\Routing\UrlGenerator; use Illuminate\Support\Facades\Schema; use Illuminate\Support\ServiceProvider; use Illuminate\Support\Facades\Log; +use Illuminate\Support\Facades\URL; /** * This service provider handles setting the observers on models @@ -31,7 +32,7 @@ use Illuminate\Support\Facades\Log; class AppServiceProvider extends ServiceProvider { /** - * Custom email array validation + * Bootstrap application services. * * @author [A. Gianotto] [] * @since [v3.0] @@ -39,19 +40,24 @@ class AppServiceProvider extends ServiceProvider */ public function boot(UrlGenerator $url) { - if (env('APP_FORCE_TLS')) { - if (strpos(env('APP_URL'), 'https') === 0) { - $url->forceScheme('https'); - } else { - Log::debug("'APP_FORCE_TLS' is set to true, but 'APP_URL' does not start with 'https://'. Will not force TLS on connections."); - } + /** + * This is a workaround for proxies/reverse proxies that don't always pass the proper headers. + * + * Here, we check if the APP_URL starts with https://, which we should always honor, + * regardless of how well the proxy or network is configured. + * + * We'll force the https scheme if the APP_URL starts with https://, or if APP_FORCE_TLS is set to true. + * + */ + if ((strpos(env('APP_URL'), 'https://') === 0) || (env('APP_FORCE_TLS'))) { + $url->forceScheme('https'); } // TODO - isn't it somehow 'gauche' to check the environment directly; shouldn't we be using config() somehow? if ( ! env('APP_ALLOW_INSECURE_HOSTS')) { // unless you set APP_ALLOW_INSECURE_HOSTS, you should PROHIBIT forging domain parts of URL via Host: headers $url_parts = parse_url(config('app.url')); if ($url_parts && array_key_exists('scheme', $url_parts) && array_key_exists('host', $url_parts)) { // check for the *required* parts of a bare-minimum URL - \URL::forceRootUrl(config('app.url')); + URL::forceRootUrl(config('app.url')); } else { Log::error("Your APP_URL in your .env is misconfigured - it is: ".config('app.url').". Many things will work strangely unless you fix it."); } diff --git a/app/Providers/AuthServiceProvider.php b/app/Providers/AuthServiceProvider.php index 51e6858c9..e17d66784 100644 --- a/app/Providers/AuthServiceProvider.php +++ b/app/Providers/AuthServiceProvider.php @@ -232,5 +232,12 @@ class AuthServiceProvider extends ServiceProvider || $user->can('update', User::class) || $user->can('create', User::class); }); + + + // This determines whether the user can edit their profile based on the setting in Admin > General + Gate::define('self.profile', function ($user) { + return $user->canEditProfile(); + }); + } } diff --git a/composer.json b/composer.json index ecaadb596..9a76301e2 100644 --- a/composer.json +++ b/composer.json @@ -61,7 +61,7 @@ "phpspec/prophecy": "^1.10", "pragmarx/google2fa-laravel": "^1.3", "rollbar/rollbar-laravel": "^8.0", - "spatie/laravel-backup": "^8.0", + "spatie/laravel-backup": "^8.8", "spatie/laravel-ignition": "^2.0", "tecnickcom/tc-lib-barcode": "^1.15", "tecnickcom/tcpdf": "^6.5", @@ -70,17 +70,17 @@ }, "suggest": { "ext-ldap": "*", - "ext-zip": "*" + "ext-zip": "*", + "ext-exif": "*" }, "require-dev": { "brianium/paratest": "^v6.4.4", "fakerphp/faker": "^1.16", + "larastan/larastan": "^2.9", "mockery/mockery": "^1.4", - "nunomaduro/larastan": "^2.0", "nunomaduro/phpinsights": "^2.7", - "php-mock/php-mock-phpunit": "^2.8", - "phpunit/php-token-stream": "^3.1", - "phpunit/phpunit": "^9.0", + "php-mock/php-mock-phpunit": "^2.10", + "phpunit/phpunit": "^9.6.19", "squizlabs/php_codesniffer": "^3.5", "symfony/css-selector": "^4.4", "symfony/dom-crawler": "^4.4", diff --git a/composer.lock b/composer.lock index 331208e36..7eb33c6b0 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": "1d2e53c6cda8298e9af973531612ad4e", + "content-hash": "1cda72f240f69b641adfb69041ebdf17", "packages": [ { "name": "alek13/slack", @@ -137,16 +137,16 @@ }, { "name": "aws/aws-crt-php", - "version": "v1.2.4", + "version": "v1.2.5", "source": { "type": "git", "url": "https://github.com/awslabs/aws-crt-php.git", - "reference": "eb0c6e4e142224a10b08f49ebf87f32611d162b2" + "reference": "0ea1f04ec5aa9f049f97e012d1ed63b76834a31b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/eb0c6e4e142224a10b08f49ebf87f32611d162b2", - "reference": "eb0c6e4e142224a10b08f49ebf87f32611d162b2", + "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/0ea1f04ec5aa9f049f97e012d1ed63b76834a31b", + "reference": "0ea1f04ec5aa9f049f97e012d1ed63b76834a31b", "shasum": "" }, "require": { @@ -185,22 +185,22 @@ ], "support": { "issues": "https://github.com/awslabs/aws-crt-php/issues", - "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.4" + "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.5" }, - "time": "2023-11-08T00:42:13+00:00" + "time": "2024-04-19T21:30:56+00:00" }, { "name": "aws/aws-sdk-php", - "version": "3.303.1", + "version": "3.314.6", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "e695623e9f6f278bed69172fddb932de3705030f" + "reference": "d04da330b0201edab71edd33a03b8d5ad6e4a313" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/e695623e9f6f278bed69172fddb932de3705030f", - "reference": "e695623e9f6f278bed69172fddb932de3705030f", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/d04da330b0201edab71edd33a03b8d5ad6e4a313", + "reference": "d04da330b0201edab71edd33a03b8d5ad6e4a313", "shasum": "" }, "require": { @@ -280,9 +280,9 @@ "support": { "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80", "issues": "https://github.com/aws/aws-sdk-php/issues", - "source": "https://github.com/aws/aws-sdk-php/tree/3.303.1" + "source": "https://github.com/aws/aws-sdk-php/tree/3.314.6" }, - "time": "2024-04-02T18:09:38+00:00" + "time": "2024-06-20T18:09:51+00:00" }, { "name": "bacon/bacon-qr-code", @@ -424,20 +424,20 @@ }, { "name": "barryvdh/laravel-dompdf", - "version": "v2.1.1", + "version": "v2.2.0", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-dompdf.git", - "reference": "cb37868365f9b937039d316727a1fced1e87b31c" + "reference": "c96f90c97666cebec154ca1ffb67afed372114d8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/cb37868365f9b937039d316727a1fced1e87b31c", - "reference": "cb37868365f9b937039d316727a1fced1e87b31c", + "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/c96f90c97666cebec154ca1ffb67afed372114d8", + "reference": "c96f90c97666cebec154ca1ffb67afed372114d8", "shasum": "" }, "require": { - "dompdf/dompdf": "^2.0.3", + "dompdf/dompdf": "^2.0.7", "illuminate/support": "^6|^7|^8|^9|^10|^11", "php": "^7.2 || ^8.0" }, @@ -485,7 +485,7 @@ ], "support": { "issues": "https://github.com/barryvdh/laravel-dompdf/issues", - "source": "https://github.com/barryvdh/laravel-dompdf/tree/v2.1.1" + "source": "https://github.com/barryvdh/laravel-dompdf/tree/v2.2.0" }, "funding": [ { @@ -497,29 +497,29 @@ "type": "github" } ], - "time": "2024-03-15T12:48:39+00:00" + "time": "2024-04-25T13:16:04+00:00" }, { "name": "brick/math", - "version": "0.11.0", + "version": "0.12.1", "source": { "type": "git", "url": "https://github.com/brick/math.git", - "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478" + "reference": "f510c0a40911935b77b86859eb5223d58d660df1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478", - "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478", + "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1", + "reference": "f510c0a40911935b77b86859eb5223d58d660df1", "shasum": "" }, "require": { - "php": "^8.0" + "php": "^8.1" }, "require-dev": { "php-coveralls/php-coveralls": "^2.2", - "phpunit/phpunit": "^9.0", - "vimeo/psalm": "5.0.0" + "phpunit/phpunit": "^10.1", + "vimeo/psalm": "5.16.0" }, "type": "library", "autoload": { @@ -539,12 +539,17 @@ "arithmetic", "bigdecimal", "bignum", + "bignumber", "brick", - "math" + "decimal", + "integer", + "math", + "mathematics", + "rational" ], "support": { "issues": "https://github.com/brick/math/issues", - "source": "https://github.com/brick/math/tree/0.11.0" + "source": "https://github.com/brick/math/tree/0.12.1" }, "funding": [ { @@ -552,7 +557,7 @@ "type": "github" } ], - "time": "2023-01-15T23:15:59+00:00" + "time": "2023-11-29T23:19:16+00:00" }, { "name": "carbonphp/carbon-doctrine-types", @@ -916,16 +921,16 @@ }, { "name": "doctrine/dbal", - "version": "3.8.3", + "version": "3.8.6", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "db922ba9436b7b18a23d1653a0b41ff2369ca41c" + "reference": "b7411825cf7efb7e51f9791dea19d86e43b399a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/db922ba9436b7b18a23d1653a0b41ff2369ca41c", - "reference": "db922ba9436b7b18a23d1653a0b41ff2369ca41c", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/b7411825cf7efb7e51f9791dea19d86e43b399a1", + "reference": "b7411825cf7efb7e51f9791dea19d86e43b399a1", "shasum": "" }, "require": { @@ -941,12 +946,12 @@ "doctrine/coding-standard": "12.0.0", "fig/log-test": "^1", "jetbrains/phpstorm-stubs": "2023.1", - "phpstan/phpstan": "1.10.58", - "phpstan/phpstan-strict-rules": "^1.5", - "phpunit/phpunit": "9.6.16", + "phpstan/phpstan": "1.11.5", + "phpstan/phpstan-strict-rules": "^1.6", + "phpunit/phpunit": "9.6.19", "psalm/plugin-phpunit": "0.18.4", "slevomat/coding-standard": "8.13.1", - "squizlabs/php_codesniffer": "3.9.0", + "squizlabs/php_codesniffer": "3.10.1", "symfony/cache": "^5.4|^6.0|^7.0", "symfony/console": "^4.4|^5.4|^6.0|^7.0", "vimeo/psalm": "4.30.0" @@ -1009,7 +1014,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/3.8.3" + "source": "https://github.com/doctrine/dbal/tree/3.8.6" }, "funding": [ { @@ -1025,7 +1030,7 @@ "type": "tidelift" } ], - "time": "2024-03-03T15:55:06+00:00" + "time": "2024-06-19T10:38:17+00:00" }, { "name": "doctrine/deprecations", @@ -1076,16 +1081,16 @@ }, { "name": "doctrine/event-manager", - "version": "2.0.0", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/doctrine/event-manager.git", - "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32" + "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32", - "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32", + "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e", + "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e", "shasum": "" }, "require": { @@ -1095,10 +1100,10 @@ "doctrine/common": "<2.9" }, "require-dev": { - "doctrine/coding-standard": "^10", + "doctrine/coding-standard": "^12", "phpstan/phpstan": "^1.8.8", - "phpunit/phpunit": "^9.5", - "vimeo/psalm": "^4.28" + "phpunit/phpunit": "^10.5", + "vimeo/psalm": "^5.24" }, "type": "library", "autoload": { @@ -1147,7 +1152,7 @@ ], "support": { "issues": "https://github.com/doctrine/event-manager/issues", - "source": "https://github.com/doctrine/event-manager/tree/2.0.0" + "source": "https://github.com/doctrine/event-manager/tree/2.0.1" }, "funding": [ { @@ -1163,7 +1168,7 @@ "type": "tidelift" } ], - "time": "2022-10-12T20:59:15+00:00" + "time": "2024-05-22T20:47:39+00:00" }, { "name": "doctrine/inflector", @@ -1405,16 +1410,16 @@ }, { "name": "dompdf/dompdf", - "version": "v2.0.4", + "version": "v2.0.8", "source": { "type": "git", "url": "https://github.com/dompdf/dompdf.git", - "reference": "093f2d9739cec57428e39ddadedfd4f3ae862c0f" + "reference": "c20247574601700e1f7c8dab39310fca1964dc52" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dompdf/dompdf/zipball/093f2d9739cec57428e39ddadedfd4f3ae862c0f", - "reference": "093f2d9739cec57428e39ddadedfd4f3ae862c0f", + "url": "https://api.github.com/repos/dompdf/dompdf/zipball/c20247574601700e1f7c8dab39310fca1964dc52", + "reference": "c20247574601700e1f7c8dab39310fca1964dc52", "shasum": "" }, "require": { @@ -1422,7 +1427,7 @@ "ext-mbstring": "*", "masterminds/html5": "^2.0", "phenx/php-font-lib": ">=0.5.4 <1.0.0", - "phenx/php-svg-lib": ">=0.3.3 <1.0.0", + "phenx/php-svg-lib": ">=0.5.2 <1.0.0", "php": "^7.1 || ^8.0" }, "require-dev": { @@ -1461,9 +1466,9 @@ "homepage": "https://github.com/dompdf/dompdf", "support": { "issues": "https://github.com/dompdf/dompdf/issues", - "source": "https://github.com/dompdf/dompdf/tree/v2.0.4" + "source": "https://github.com/dompdf/dompdf/tree/v2.0.8" }, - "time": "2023-12-12T20:19:39+00:00" + "time": "2024-04-29T13:06:17+00:00" }, { "name": "dragonmantank/cron-expression", @@ -1831,26 +1836,26 @@ }, { "name": "firebase/php-jwt", - "version": "v6.10.0", + "version": "v6.10.1", "source": { "type": "git", "url": "https://github.com/firebase/php-jwt.git", - "reference": "a49db6f0a5033aef5143295342f1c95521b075ff" + "reference": "500501c2ce893c824c801da135d02661199f60c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/a49db6f0a5033aef5143295342f1c95521b075ff", - "reference": "a49db6f0a5033aef5143295342f1c95521b075ff", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/500501c2ce893c824c801da135d02661199f60c5", + "reference": "500501c2ce893c824c801da135d02661199f60c5", "shasum": "" }, "require": { - "php": "^7.4||^8.0" + "php": "^8.0" }, "require-dev": { - "guzzlehttp/guzzle": "^6.5||^7.4", + "guzzlehttp/guzzle": "^7.4", "phpspec/prophecy-phpunit": "^2.0", "phpunit/phpunit": "^9.5", - "psr/cache": "^1.0||^2.0", + "psr/cache": "^2.0||^3.0", "psr/http-client": "^1.0", "psr/http-factory": "^1.0" }, @@ -1888,9 +1893,9 @@ ], "support": { "issues": "https://github.com/firebase/php-jwt/issues", - "source": "https://github.com/firebase/php-jwt/tree/v6.10.0" + "source": "https://github.com/firebase/php-jwt/tree/v6.10.1" }, - "time": "2023-12-01T16:26:39+00:00" + "time": "2024-05-18T18:05:11+00:00" }, { "name": "fruitcake/php-cors", @@ -2670,16 +2675,16 @@ }, { "name": "laravel/framework", - "version": "v10.48.4", + "version": "v10.48.14", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "7e0701bf59cb76a51f7c1f7bea51c0c0c29c0b72" + "reference": "27cb4736bb7e60a5311ec73160068dfbcf98336b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/7e0701bf59cb76a51f7c1f7bea51c0c0c29c0b72", - "reference": "7e0701bf59cb76a51f7c1f7bea51c0c0c29c0b72", + "url": "https://api.github.com/repos/laravel/framework/zipball/27cb4736bb7e60a5311ec73160068dfbcf98336b", + "reference": "27cb4736bb7e60a5311ec73160068dfbcf98336b", "shasum": "" }, "require": { @@ -2873,7 +2878,7 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2024-03-21T13:36:36+00:00" + "time": "2024-06-21T10:06:42+00:00" }, { "name": "laravel/helpers", @@ -3012,16 +3017,16 @@ }, { "name": "laravel/prompts", - "version": "v0.1.17", + "version": "v0.1.24", "source": { "type": "git", "url": "https://github.com/laravel/prompts.git", - "reference": "8ee9f87f7f9eadcbe21e9e72cd4176b2f06cd5b5" + "reference": "409b0b4305273472f3754826e68f4edbd0150149" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/prompts/zipball/8ee9f87f7f9eadcbe21e9e72cd4176b2f06cd5b5", - "reference": "8ee9f87f7f9eadcbe21e9e72cd4176b2f06cd5b5", + "url": "https://api.github.com/repos/laravel/prompts/zipball/409b0b4305273472f3754826e68f4edbd0150149", + "reference": "409b0b4305273472f3754826e68f4edbd0150149", "shasum": "" }, "require": { @@ -3061,11 +3066,12 @@ "license": [ "MIT" ], + "description": "Add beautiful and user-friendly forms to your command-line applications.", "support": { "issues": "https://github.com/laravel/prompts/issues", - "source": "https://github.com/laravel/prompts/tree/v0.1.17" + "source": "https://github.com/laravel/prompts/tree/v0.1.24" }, - "time": "2024-03-13T16:05:43+00:00" + "time": "2024-06-17T13:58:22+00:00" }, { "name": "laravel/serializable-closure", @@ -3190,26 +3196,28 @@ }, { "name": "laravel/socialite", - "version": "v5.12.1", + "version": "v5.15.0", "source": { "type": "git", "url": "https://github.com/laravel/socialite.git", - "reference": "7dae1b072573809f32ab6dcf4aebb57c8b3e8acf" + "reference": "c8234bfb286a8210df8d62f94562c71bfda4a446" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/socialite/zipball/7dae1b072573809f32ab6dcf4aebb57c8b3e8acf", - "reference": "7dae1b072573809f32ab6dcf4aebb57c8b3e8acf", + "url": "https://api.github.com/repos/laravel/socialite/zipball/c8234bfb286a8210df8d62f94562c71bfda4a446", + "reference": "c8234bfb286a8210df8d62f94562c71bfda4a446", "shasum": "" }, "require": { "ext-json": "*", + "firebase/php-jwt": "^6.4", "guzzlehttp/guzzle": "^6.0|^7.0", "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", "league/oauth1-client": "^1.10.1", - "php": "^7.2|^8.0" + "php": "^7.2|^8.0", + "phpseclib/phpseclib": "^3.0" }, "require-dev": { "mockery/mockery": "^1.0", @@ -3256,7 +3264,7 @@ "issues": "https://github.com/laravel/socialite/issues", "source": "https://github.com/laravel/socialite" }, - "time": "2024-02-16T08:58:20+00:00" + "time": "2024-06-11T13:33:20+00:00" }, { "name": "laravel/tinker", @@ -3326,16 +3334,16 @@ }, { "name": "laravel/ui", - "version": "v4.5.1", + "version": "v4.5.2", "source": { "type": "git", "url": "https://github.com/laravel/ui.git", - "reference": "a3562953123946996a503159199d6742d5534e61" + "reference": "c75396f63268c95b053c8e4814eb70e0875e9628" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/ui/zipball/a3562953123946996a503159199d6742d5534e61", - "reference": "a3562953123946996a503159199d6742d5534e61", + "url": "https://api.github.com/repos/laravel/ui/zipball/c75396f63268c95b053c8e4814eb70e0875e9628", + "reference": "c75396f63268c95b053c8e4814eb70e0875e9628", "shasum": "" }, "require": { @@ -3383,9 +3391,9 @@ "ui" ], "support": { - "source": "https://github.com/laravel/ui/tree/v4.5.1" + "source": "https://github.com/laravel/ui/tree/v4.5.2" }, - "time": "2024-03-21T18:12:29+00:00" + "time": "2024-05-08T18:07:10+00:00" }, { "name": "laravelcollective/html", @@ -3462,39 +3470,38 @@ }, { "name": "lcobucci/jwt", - "version": "4.3.0", + "version": "5.3.0", "source": { "type": "git", "url": "https://github.com/lcobucci/jwt.git", - "reference": "4d7de2fe0d51a96418c0d04004986e410e87f6b4" + "reference": "08071d8d2c7f4b00222cc4b1fb6aa46990a80f83" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/jwt/zipball/4d7de2fe0d51a96418c0d04004986e410e87f6b4", - "reference": "4d7de2fe0d51a96418c0d04004986e410e87f6b4", + "url": "https://api.github.com/repos/lcobucci/jwt/zipball/08071d8d2c7f4b00222cc4b1fb6aa46990a80f83", + "reference": "08071d8d2c7f4b00222cc4b1fb6aa46990a80f83", "shasum": "" }, "require": { - "ext-hash": "*", - "ext-json": "*", - "ext-mbstring": "*", "ext-openssl": "*", "ext-sodium": "*", - "lcobucci/clock": "^2.0 || ^3.0", - "php": "^7.4 || ^8.0" + "php": "~8.1.0 || ~8.2.0 || ~8.3.0", + "psr/clock": "^1.0" }, "require-dev": { - "infection/infection": "^0.21", - "lcobucci/coding-standard": "^6.0", - "mikey179/vfsstream": "^1.6.7", - "phpbench/phpbench": "^1.2", - "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^1.4", - "phpstan/phpstan-deprecation-rules": "^1.0", - "phpstan/phpstan-phpunit": "^1.0", - "phpstan/phpstan-strict-rules": "^1.0", - "phpunit/php-invoker": "^3.1", - "phpunit/phpunit": "^9.5" + "infection/infection": "^0.27.0", + "lcobucci/clock": "^3.0", + "lcobucci/coding-standard": "^11.0", + "phpbench/phpbench": "^1.2.9", + "phpstan/extension-installer": "^1.2", + "phpstan/phpstan": "^1.10.7", + "phpstan/phpstan-deprecation-rules": "^1.1.3", + "phpstan/phpstan-phpunit": "^1.3.10", + "phpstan/phpstan-strict-rules": "^1.5.0", + "phpunit/phpunit": "^10.2.6" + }, + "suggest": { + "lcobucci/clock": ">= 3.0" }, "type": "library", "autoload": { @@ -3520,7 +3527,7 @@ ], "support": { "issues": "https://github.com/lcobucci/jwt/issues", - "source": "https://github.com/lcobucci/jwt/tree/4.3.0" + "source": "https://github.com/lcobucci/jwt/tree/5.3.0" }, "funding": [ { @@ -3532,7 +3539,7 @@ "type": "patreon" } ], - "time": "2023-01-02T13:28:00+00:00" + "time": "2024-04-11T23:07:54+00:00" }, { "name": "league/commonmark", @@ -3724,40 +3731,39 @@ }, { "name": "league/csv", - "version": "9.15.0", + "version": "9.16.0", "source": { "type": "git", "url": "https://github.com/thephpleague/csv.git", - "reference": "fa7e2441c0bc9b2360f4314fd6c954f7ff40d435" + "reference": "998280c6c34bd67d8125fdc8b45bae28d761b440" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/csv/zipball/fa7e2441c0bc9b2360f4314fd6c954f7ff40d435", - "reference": "fa7e2441c0bc9b2360f4314fd6c954f7ff40d435", + "url": "https://api.github.com/repos/thephpleague/csv/zipball/998280c6c34bd67d8125fdc8b45bae28d761b440", + "reference": "998280c6c34bd67d8125fdc8b45bae28d761b440", "shasum": "" }, "require": { "ext-filter": "*", - "ext-json": "*", - "ext-mbstring": "*", "php": "^8.1.2" }, "require-dev": { - "doctrine/collections": "^2.1.4", + "doctrine/collections": "^2.2.2", "ext-dom": "*", "ext-xdebug": "*", - "friendsofphp/php-cs-fixer": "^v3.22.0", + "friendsofphp/php-cs-fixer": "^3.57.1", "phpbench/phpbench": "^1.2.15", - "phpstan/phpstan": "^1.10.57", - "phpstan/phpstan-deprecation-rules": "^1.1.4", - "phpstan/phpstan-phpunit": "^1.3.15", - "phpstan/phpstan-strict-rules": "^1.5.2", - "phpunit/phpunit": "^10.5.9", - "symfony/var-dumper": "^6.4.2" + "phpstan/phpstan": "^1.11.1", + "phpstan/phpstan-deprecation-rules": "^1.2.0", + "phpstan/phpstan-phpunit": "^1.4.0", + "phpstan/phpstan-strict-rules": "^1.6.0", + "phpunit/phpunit": "^10.5.16 || ^11.1.3", + "symfony/var-dumper": "^6.4.6 || ^7.0.7" }, "suggest": { "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes", - "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters" + "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters", + "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters" }, "type": "library", "extra": { @@ -3809,7 +3815,7 @@ "type": "github" } ], - "time": "2024-02-20T20:00:00+00:00" + "time": "2024-05-24T11:04:54+00:00" }, { "name": "league/event", @@ -3867,16 +3873,16 @@ }, { "name": "league/flysystem", - "version": "3.26.0", + "version": "3.28.0", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "072735c56cc0da00e10716dd90d5a7f7b40b36be" + "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/072735c56cc0da00e10716dd90d5a7f7b40b36be", - "reference": "072735c56cc0da00e10716dd90d5a7f7b40b36be", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c", + "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c", "shasum": "" }, "require": { @@ -3900,10 +3906,13 @@ "composer/semver": "^3.0", "ext-fileinfo": "*", "ext-ftp": "*", + "ext-mongodb": "^1.3", "ext-zip": "*", "friendsofphp/php-cs-fixer": "^3.5", "google/cloud-storage": "^1.23", + "guzzlehttp/psr7": "^2.6", "microsoft/azure-storage-blob": "^1.1", + "mongodb/mongodb": "^1.2", "phpseclib/phpseclib": "^3.0.36", "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^9.5.11|^10.0", @@ -3941,32 +3950,22 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/3.26.0" + "source": "https://github.com/thephpleague/flysystem/tree/3.28.0" }, - "funding": [ - { - "url": "https://ecologi.com/frankdejonge", - "type": "custom" - }, - { - "url": "https://github.com/frankdejonge", - "type": "github" - } - ], - "time": "2024-03-25T11:49:53+00:00" + "time": "2024-05-22T10:09:12+00:00" }, { "name": "league/flysystem-aws-s3-v3", - "version": "3.26.0", + "version": "3.28.0", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git", - "reference": "885d0a758c71ae3cd6c503544573a1fdb8dc754f" + "reference": "22071ef1604bc776f5ff2468ac27a752514665c8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/885d0a758c71ae3cd6c503544573a1fdb8dc754f", - "reference": "885d0a758c71ae3cd6c503544573a1fdb8dc754f", + "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/22071ef1604bc776f5ff2468ac27a752514665c8", + "reference": "22071ef1604bc776f5ff2468ac27a752514665c8", "shasum": "" }, "require": { @@ -4006,32 +4005,22 @@ "storage" ], "support": { - "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.26.0" + "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.28.0" }, - "funding": [ - { - "url": "https://ecologi.com/frankdejonge", - "type": "custom" - }, - { - "url": "https://github.com/frankdejonge", - "type": "github" - } - ], - "time": "2024-03-24T21:11:18+00:00" + "time": "2024-05-06T20:05:52+00:00" }, { "name": "league/flysystem-local", - "version": "3.25.1", + "version": "3.28.0", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem-local.git", - "reference": "61a6a90d6e999e4ddd9ce5adb356de0939060b92" + "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/61a6a90d6e999e4ddd9ce5adb356de0939060b92", - "reference": "61a6a90d6e999e4ddd9ce5adb356de0939060b92", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/13f22ea8be526ea58c2ddff9e158ef7c296e4f40", + "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40", "shasum": "" }, "require": { @@ -4065,19 +4054,9 @@ "local" ], "support": { - "source": "https://github.com/thephpleague/flysystem-local/tree/3.25.1" + "source": "https://github.com/thephpleague/flysystem-local/tree/3.28.0" }, - "funding": [ - { - "url": "https://ecologi.com/frankdejonge", - "type": "custom" - }, - { - "url": "https://github.com/frankdejonge", - "type": "github" - } - ], - "time": "2024-03-15T19:58:44+00:00" + "time": "2024-05-06T20:05:52+00:00" }, { "name": "league/mime-type-detection", @@ -4475,37 +4454,34 @@ }, { "name": "livewire/livewire", - "version": "v3.5.1", + "version": "v2.12.6", "source": { "type": "git", "url": "https://github.com/livewire/livewire.git", - "reference": "da044261bb5c5449397f18fda3409f14acf47c0a" + "reference": "7d3a57b3193299cf1a0639a3935c696f4da2cf92" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/livewire/livewire/zipball/da044261bb5c5449397f18fda3409f14acf47c0a", - "reference": "da044261bb5c5449397f18fda3409f14acf47c0a", + "url": "https://api.github.com/repos/livewire/livewire/zipball/7d3a57b3193299cf1a0639a3935c696f4da2cf92", + "reference": "7d3a57b3193299cf1a0639a3935c696f4da2cf92", "shasum": "" }, "require": { - "illuminate/database": "^10.0|^11.0", - "illuminate/routing": "^10.0|^11.0", - "illuminate/support": "^10.0|^11.0", - "illuminate/validation": "^10.0|^11.0", + "illuminate/database": "^7.0|^8.0|^9.0|^10.0", + "illuminate/support": "^7.0|^8.0|^9.0|^10.0", + "illuminate/validation": "^7.0|^8.0|^9.0|^10.0", "league/mime-type-detection": "^1.9", - "php": "^8.1", - "symfony/console": "^6.0|^7.0", - "symfony/http-kernel": "^6.2|^7.0" + "php": "^7.2.5|^8.0", + "symfony/http-kernel": "^5.0|^6.0" }, "require-dev": { "calebporzio/sushi": "^2.1", - "laravel/framework": "^10.15.0|^11.0", - "laravel/prompts": "^0.1.6", + "laravel/framework": "^7.0|^8.0|^9.0|^10.0", "mockery/mockery": "^1.3.1", - "orchestra/testbench": "^8.21.0|^9.0", - "orchestra/testbench-dusk": "^8.24|^9.1", - "phpunit/phpunit": "^10.4", - "psy/psysh": "^0.11.22|^0.12" + "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0", + "orchestra/testbench-dusk": "^5.2|^6.0|^7.0|^8.0", + "phpunit/phpunit": "^8.4|^9.0", + "psy/psysh": "@stable" }, "type": "library", "extra": { @@ -4539,7 +4515,7 @@ "description": "A front-end framework for Laravel.", "support": { "issues": "https://github.com/livewire/livewire/issues", - "source": "https://github.com/livewire/livewire/tree/v3.5.1" + "source": "https://github.com/livewire/livewire/tree/v2.12.6" }, "funding": [ { @@ -4547,20 +4523,20 @@ "type": "github" } ], - "time": "2024-06-18T11:10:42+00:00" + "time": "2023-08-11T04:02:34+00:00" }, { "name": "masterminds/html5", - "version": "2.8.1", + "version": "2.9.0", "source": { "type": "git", "url": "https://github.com/Masterminds/html5-php.git", - "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf" + "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf", - "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf", + "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", + "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", "shasum": "" }, "require": { @@ -4568,7 +4544,7 @@ "php": ">=5.3.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8" + "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9" }, "type": "library", "extra": { @@ -4612,22 +4588,22 @@ ], "support": { "issues": "https://github.com/Masterminds/html5-php/issues", - "source": "https://github.com/Masterminds/html5-php/tree/2.8.1" + "source": "https://github.com/Masterminds/html5-php/tree/2.9.0" }, - "time": "2023-05-10T11:58:31+00:00" + "time": "2024-03-31T07:05:07+00:00" }, { "name": "maximebf/debugbar", - "version": "v1.22.1", + "version": "v1.22.3", "source": { "type": "git", "url": "https://github.com/maximebf/php-debugbar.git", - "reference": "d7b6e1dc2dc85c01ed63ab158b00a7f46abdebcc" + "reference": "7aa9a27a0b1158ed5ad4e7175e8d3aee9a818b96" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/d7b6e1dc2dc85c01ed63ab158b00a7f46abdebcc", - "reference": "d7b6e1dc2dc85c01ed63ab158b00a7f46abdebcc", + "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/7aa9a27a0b1158ed5ad4e7175e8d3aee9a818b96", + "reference": "7aa9a27a0b1158ed5ad4e7175e8d3aee9a818b96", "shasum": "" }, "require": { @@ -4680,22 +4656,22 @@ ], "support": { "issues": "https://github.com/maximebf/php-debugbar/issues", - "source": "https://github.com/maximebf/php-debugbar/tree/v1.22.1" + "source": "https://github.com/maximebf/php-debugbar/tree/v1.22.3" }, - "time": "2024-04-01T10:44:20+00:00" + "time": "2024-04-03T19:39:26+00:00" }, { "name": "monolog/monolog", - "version": "3.5.0", + "version": "3.6.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448" + "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c915e2634718dbc8a4a15c61b0e62e7a44e14448", - "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654", + "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654", "shasum": "" }, "require": { @@ -4718,7 +4694,7 @@ "phpstan/phpstan": "^1.9", "phpstan/phpstan-deprecation-rules": "^1.0", "phpstan/phpstan-strict-rules": "^1.4", - "phpunit/phpunit": "^10.1", + "phpunit/phpunit": "^10.5.17", "predis/predis": "^1.1 || ^2", "ruflin/elastica": "^7", "symfony/mailer": "^5.4 || ^6", @@ -4771,7 +4747,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/3.5.0" + "source": "https://github.com/Seldaek/monolog/tree/3.6.0" }, "funding": [ { @@ -4783,7 +4759,7 @@ "type": "tidelift" } ], - "time": "2023-10-27T15:32:31+00:00" + "time": "2024-04-12T21:02:21+00:00" }, { "name": "mtdowling/jmespath.php", @@ -4894,16 +4870,16 @@ }, { "name": "nesbot/carbon", - "version": "2.72.3", + "version": "2.72.5", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83" + "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/0c6fd108360c562f6e4fd1dedb8233b423e91c83", - "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed", + "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed", "shasum": "" }, "require": { @@ -4937,8 +4913,8 @@ "type": "library", "extra": { "branch-alias": { - "dev-3.x": "3.x-dev", - "dev-master": "2.x-dev" + "dev-master": "3.x-dev", + "dev-2.x": "2.x-dev" }, "laravel": { "providers": [ @@ -4997,7 +4973,7 @@ "type": "tidelift" } ], - "time": "2024-01-25T10:35:09+00:00" + "time": "2024-06-03T19:18:41+00:00" }, { "name": "nette/schema", @@ -5517,16 +5493,16 @@ }, { "name": "onelogin/php-saml", - "version": "3.6.1", + "version": "3.7.0", "source": { "type": "git", - "url": "https://github.com/onelogin/php-saml.git", - "reference": "a7328b11887660ad248ea10952dd67a5aa73ba3b" + "url": "https://github.com/SAML-Toolkits/php-saml.git", + "reference": "91c1a3b3e2390aba9facc64ba81b407a50962ebb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/onelogin/php-saml/zipball/a7328b11887660ad248ea10952dd67a5aa73ba3b", - "reference": "a7328b11887660ad248ea10952dd67a5aa73ba3b", + "url": "https://api.github.com/repos/SAML-Toolkits/php-saml/zipball/91c1a3b3e2390aba9facc64ba81b407a50962ebb", + "reference": "91c1a3b3e2390aba9facc64ba81b407a50962ebb", "shasum": "" }, "require": { @@ -5556,32 +5532,40 @@ "license": [ "MIT" ], - "description": "OneLogin PHP SAML Toolkit", - "homepage": "https://developers.onelogin.com/saml/php", + "description": "PHP SAML Toolkit", + "homepage": "https://github.com/SAML-Toolkits/php-saml", "keywords": [ + "Federation", "SAML2", - "onelogin", + "SSO", + "identity", "saml" ], "support": { - "email": "sixto.garcia@onelogin.com", - "issues": "https://github.com/onelogin/php-saml/issues", - "source": "https://github.com/onelogin/php-saml/" + "email": "sixto.martin.garcia@gmail.com", + "issues": "https://github.com/onelogin/SAML-Toolkits/issues", + "source": "https://github.com/onelogin/SAML-Toolkits/" }, - "time": "2021-03-02T10:13:07+00:00" + "funding": [ + { + "url": "https://github.com/SAML-Toolkits", + "type": "github" + } + ], + "time": "2024-05-30T15:14:26+00:00" }, { "name": "paragonie/constant_time_encoding", - "version": "v2.6.3", + "version": "v2.7.0", "source": { "type": "git", "url": "https://github.com/paragonie/constant_time_encoding.git", - "reference": "58c3f47f650c94ec05a151692652a868995d2938" + "reference": "52a0d99e69f56b9ec27ace92ba56897fe6993105" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938", - "reference": "58c3f47f650c94ec05a151692652a868995d2938", + "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/52a0d99e69f56b9ec27ace92ba56897fe6993105", + "reference": "52a0d99e69f56b9ec27ace92ba56897fe6993105", "shasum": "" }, "require": { @@ -5635,7 +5619,7 @@ "issues": "https://github.com/paragonie/constant_time_encoding/issues", "source": "https://github.com/paragonie/constant_time_encoding" }, - "time": "2022-06-14T06:56:20+00:00" + "time": "2024-05-08T12:18:48+00:00" }, { "name": "paragonie/random_compat", @@ -5689,16 +5673,16 @@ }, { "name": "paragonie/sodium_compat", - "version": "v1.20.0", + "version": "v1.21.1", "source": { "type": "git", "url": "https://github.com/paragonie/sodium_compat.git", - "reference": "e592a3e06d1fa0d43988c7c7d9948ca836f644b6" + "reference": "bb312875dcdd20680419564fe42ba1d9564b9e37" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/e592a3e06d1fa0d43988c7c7d9948ca836f644b6", - "reference": "e592a3e06d1fa0d43988c7c7d9948ca836f644b6", + "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/bb312875dcdd20680419564fe42ba1d9564b9e37", + "reference": "bb312875dcdd20680419564fe42ba1d9564b9e37", "shasum": "" }, "require": { @@ -5769,9 +5753,9 @@ ], "support": { "issues": "https://github.com/paragonie/sodium_compat/issues", - "source": "https://github.com/paragonie/sodium_compat/tree/v1.20.0" + "source": "https://github.com/paragonie/sodium_compat/tree/v1.21.1" }, - "time": "2023-04-30T00:54:53+00:00" + "time": "2024-04-22T22:05:04+00:00" }, { "name": "phenx/php-font-lib", @@ -5819,16 +5803,16 @@ }, { "name": "phenx/php-svg-lib", - "version": "0.5.3", + "version": "0.5.4", "source": { "type": "git", "url": "https://github.com/dompdf/php-svg-lib.git", - "reference": "0e46722c154726a5f9ac218197ccc28adba16fcf" + "reference": "46b25da81613a9cf43c83b2a8c2c1bdab27df691" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/0e46722c154726a5f9ac218197ccc28adba16fcf", - "reference": "0e46722c154726a5f9ac218197ccc28adba16fcf", + "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/46b25da81613a9cf43c83b2a8c2c1bdab27df691", + "reference": "46b25da81613a9cf43c83b2a8c2c1bdab27df691", "shasum": "" }, "require": { @@ -5859,9 +5843,9 @@ "homepage": "https://github.com/PhenX/php-svg-lib", "support": { "issues": "https://github.com/dompdf/php-svg-lib/issues", - "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.3" + "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.4" }, - "time": "2024-02-23T20:39:24+00:00" + "time": "2024-04-08T12:52:34+00:00" }, { "name": "phpdocumentor/reflection-common", @@ -5918,28 +5902,35 @@ }, { "name": "phpdocumentor/reflection-docblock", - "version": "5.3.0", + "version": "5.4.1", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "622548b623e81ca6d78b721c5e029f4ce664f170" + "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170", - "reference": "622548b623e81ca6d78b721c5e029f4ce664f170", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c", + "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c", "shasum": "" }, "require": { + "doctrine/deprecations": "^1.1", "ext-filter": "*", - "php": "^7.2 || ^8.0", + "php": "^7.4 || ^8.0", "phpdocumentor/reflection-common": "^2.2", - "phpdocumentor/type-resolver": "^1.3", + "phpdocumentor/type-resolver": "^1.7", + "phpstan/phpdoc-parser": "^1.7", "webmozart/assert": "^1.9.1" }, "require-dev": { - "mockery/mockery": "~1.3.2", - "psalm/phar": "^4.8" + "mockery/mockery": "~1.3.5", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-webmozart-assert": "^1.2", + "phpunit/phpunit": "^9.5", + "vimeo/psalm": "^5.13" }, "type": "library", "extra": { @@ -5963,15 +5954,15 @@ }, { "name": "Jaap van Otterdijk", - "email": "account@ijaap.nl" + "email": "opensource@ijaap.nl" } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", "support": { "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", - "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0" + "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1" }, - "time": "2021-10-19T17:43:47+00:00" + "time": "2024-05-21T05:55:05+00:00" }, { "name": "phpdocumentor/type-resolver", @@ -6108,20 +6099,20 @@ }, { "name": "phpseclib/phpseclib", - "version": "3.0.37", + "version": "3.0.38", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "cfa2013d0f68c062055180dd4328cc8b9d1f30b8" + "reference": "b18b8788e51156c4dd97b7f220a31149a0052067" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/cfa2013d0f68c062055180dd4328cc8b9d1f30b8", - "reference": "cfa2013d0f68c062055180dd4328cc8b9d1f30b8", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/b18b8788e51156c4dd97b7f220a31149a0052067", + "reference": "b18b8788e51156c4dd97b7f220a31149a0052067", "shasum": "" }, "require": { - "paragonie/constant_time_encoding": "^1|^2", + "paragonie/constant_time_encoding": "^1|^2|^3", "paragonie/random_compat": "^1.4|^2.0|^9.99.99", "php": ">=5.6.1" }, @@ -6198,7 +6189,7 @@ ], "support": { "issues": "https://github.com/phpseclib/phpseclib/issues", - "source": "https://github.com/phpseclib/phpseclib/tree/3.0.37" + "source": "https://github.com/phpseclib/phpseclib/tree/3.0.38" }, "funding": [ { @@ -6214,7 +6205,7 @@ "type": "tidelift" } ], - "time": "2024-03-03T02:14:58+00:00" + "time": "2024-06-17T10:11:32+00:00" }, { "name": "phpspec/prophecy", @@ -6287,16 +6278,16 @@ }, { "name": "phpstan/phpdoc-parser", - "version": "1.27.0", + "version": "1.29.1", "source": { "type": "git", "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "86e4d5a4b036f8f0be1464522f4c6b584c452757" + "reference": "fcaefacf2d5c417e928405b71b400d4ce10daaf4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/86e4d5a4b036f8f0be1464522f4c6b584c452757", - "reference": "86e4d5a4b036f8f0be1464522f4c6b584c452757", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/fcaefacf2d5c417e928405b71b400d4ce10daaf4", + "reference": "fcaefacf2d5c417e928405b71b400d4ce10daaf4", "shasum": "" }, "require": { @@ -6328,9 +6319,9 @@ "description": "PHPDoc parser with support for nullable, intersection and generic types", "support": { "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/1.27.0" + "source": "https://github.com/phpstan/phpdoc-parser/tree/1.29.1" }, - "time": "2024-03-21T13:14:53+00:00" + "time": "2024-05-31T08:52:43+00:00" }, { "name": "pragmarx/google2fa", @@ -6775,20 +6766,20 @@ }, { "name": "psr/http-factory", - "version": "1.0.2", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/php-fig/http-factory.git", - "reference": "e616d01114759c4c489f93b099585439f795fe35" + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", - "reference": "e616d01114759c4c489f93b099585439f795fe35", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", "shasum": "" }, "require": { - "php": ">=7.0.0", + "php": ">=7.1", "psr/http-message": "^1.0 || ^2.0" }, "type": "library", @@ -6812,7 +6803,7 @@ "homepage": "https://www.php-fig.org/" } ], - "description": "Common interfaces for PSR-7 HTTP message factories", + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", "keywords": [ "factory", "http", @@ -6824,9 +6815,9 @@ "response" ], "support": { - "source": "https://github.com/php-fig/http-factory/tree/1.0.2" + "source": "https://github.com/php-fig/http-factory" }, - "time": "2023-04-10T20:10:41+00:00" + "time": "2024-04-15T12:06:14+00:00" }, { "name": "psr/http-message", @@ -6984,16 +6975,16 @@ }, { "name": "psy/psysh", - "version": "v0.12.3", + "version": "v0.12.4", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "b6b6cce7d3ee8fbf31843edce5e8f5a72eff4a73" + "reference": "2fd717afa05341b4f8152547f142cd2f130f6818" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/b6b6cce7d3ee8fbf31843edce5e8f5a72eff4a73", - "reference": "b6b6cce7d3ee8fbf31843edce5e8f5a72eff4a73", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818", + "reference": "2fd717afa05341b4f8152547f142cd2f130f6818", "shasum": "" }, "require": { @@ -7057,9 +7048,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.12.3" + "source": "https://github.com/bobthecow/psysh/tree/v0.12.4" }, - "time": "2024-04-02T15:57:53+00:00" + "time": "2024-06-10T01:18:23+00:00" }, { "name": "ralouphie/getallheaders", @@ -7196,20 +7187,20 @@ }, { "name": "ramsey/uuid", - "version": "4.7.5", + "version": "4.7.6", "source": { "type": "git", "url": "https://github.com/ramsey/uuid.git", - "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e" + "reference": "91039bc1faa45ba123c4328958e620d382ec7088" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", - "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088", + "reference": "91039bc1faa45ba123c4328958e620d382ec7088", "shasum": "" }, "require": { - "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11", + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12", "ext-json": "*", "php": "^8.0", "ramsey/collection": "^1.2 || ^2.0" @@ -7272,7 +7263,7 @@ ], "support": { "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid/tree/4.7.5" + "source": "https://github.com/ramsey/uuid/tree/4.7.6" }, "funding": [ { @@ -7284,7 +7275,7 @@ "type": "tidelift" } ], - "time": "2023-11-08T05:53:05+00:00" + "time": "2024-04-27T21:32:50+00:00" }, { "name": "robrichards/xmlseclibs", @@ -7810,16 +7801,16 @@ }, { "name": "spatie/backtrace", - "version": "1.5.3", + "version": "1.6.1", "source": { "type": "git", "url": "https://github.com/spatie/backtrace.git", - "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab" + "reference": "8373b9d51638292e3bfd736a9c19a654111b4a23" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/backtrace/zipball/483f76a82964a0431aa836b6ed0edde0c248e3ab", - "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab", + "url": "https://api.github.com/repos/spatie/backtrace/zipball/8373b9d51638292e3bfd736a9c19a654111b4a23", + "reference": "8373b9d51638292e3bfd736a9c19a654111b4a23", "shasum": "" }, "require": { @@ -7827,6 +7818,7 @@ }, "require-dev": { "ext-json": "*", + "laravel/serializable-closure": "^1.3", "phpunit/phpunit": "^9.3", "spatie/phpunit-snapshot-assertions": "^4.2", "symfony/var-dumper": "^5.1" @@ -7856,7 +7848,7 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/backtrace/tree/1.5.3" + "source": "https://github.com/spatie/backtrace/tree/1.6.1" }, "funding": [ { @@ -7868,20 +7860,20 @@ "type": "other" } ], - "time": "2023-06-28T12:59:17+00:00" + "time": "2024-04-24T13:22:11+00:00" }, { "name": "spatie/db-dumper", - "version": "3.4.3", + "version": "3.6.0", "source": { "type": "git", "url": "https://github.com/spatie/db-dumper.git", - "reference": "c566852826f3e9dceea27eef5173bad93b83e61c" + "reference": "faca5056830bccea04eadf07e8074669cb9e905e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/db-dumper/zipball/c566852826f3e9dceea27eef5173bad93b83e61c", - "reference": "c566852826f3e9dceea27eef5173bad93b83e61c", + "url": "https://api.github.com/repos/spatie/db-dumper/zipball/faca5056830bccea04eadf07e8074669cb9e905e", + "reference": "faca5056830bccea04eadf07e8074669cb9e905e", "shasum": "" }, "require": { @@ -7919,7 +7911,7 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/db-dumper/tree/3.4.3" + "source": "https://github.com/spatie/db-dumper/tree/3.6.0" }, "funding": [ { @@ -7931,26 +7923,100 @@ "type": "github" } ], - "time": "2024-04-01T07:37:06+00:00" + "time": "2024-04-24T14:54:13+00:00" }, { - "name": "spatie/flare-client-php", - "version": "1.4.4", + "name": "spatie/error-solutions", + "version": "1.0.1", "source": { "type": "git", - "url": "https://github.com/spatie/flare-client-php.git", - "reference": "17082e780752d346c2db12ef5d6bee8e835e399c" + "url": "https://github.com/spatie/error-solutions.git", + "reference": "d60d4d2ef4b7701c86134ded959667cac6215233" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/17082e780752d346c2db12ef5d6bee8e835e399c", - "reference": "17082e780752d346c2db12ef5d6bee8e835e399c", + "url": "https://api.github.com/repos/spatie/error-solutions/zipball/d60d4d2ef4b7701c86134ded959667cac6215233", + "reference": "d60d4d2ef4b7701c86134ded959667cac6215233", + "shasum": "" + }, + "require": { + "php": "^8.0" + }, + "require-dev": { + "illuminate/broadcasting": "^10.0|^11.0", + "illuminate/cache": "^10.0|^11.0", + "illuminate/support": "^10.0|^11.0", + "livewire/livewire": "^2.11|^3.3.5", + "openai-php/client": "^0.10.1", + "orchestra/testbench": "^7.0|8.22.3|^9.0", + "pestphp/pest": "^2.20", + "phpstan/phpstan": "^1.11", + "psr/simple-cache": "^3.0", + "psr/simple-cache-implementation": "^3.0", + "spatie/ray": "^1.28", + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "simple-cache-implementation": "To cache solutions from OpenAI" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\Ignition\\": "legacy/ignition", + "Spatie\\ErrorSolutions\\": "src", + "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ruben Van Assche", + "email": "ruben@spatie.be", + "role": "Developer" + } + ], + "description": "This is my package error-solutions", + "homepage": "https://github.com/spatie/error-solutions", + "keywords": [ + "error-solutions", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/error-solutions/issues", + "source": "https://github.com/spatie/error-solutions/tree/1.0.1" + }, + "funding": [ + { + "url": "https://github.com/Spatie", + "type": "github" + } + ], + "time": "2024-06-21T10:09:00+00:00" + }, + { + "name": "spatie/flare-client-php", + "version": "1.7.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/flare-client-php.git", + "reference": "097040ff51e660e0f6fc863684ac4b02c93fa234" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/097040ff51e660e0f6fc863684ac4b02c93fa234", + "reference": "097040ff51e660e0f6fc863684ac4b02c93fa234", "shasum": "" }, "require": { "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0", "php": "^8.0", - "spatie/backtrace": "^1.5.2", + "spatie/backtrace": "^1.6.1", "symfony/http-foundation": "^5.2|^6.0|^7.0", "symfony/mime": "^5.2|^6.0|^7.0", "symfony/process": "^5.2|^6.0|^7.0", @@ -7992,7 +8058,7 @@ ], "support": { "issues": "https://github.com/spatie/flare-client-php/issues", - "source": "https://github.com/spatie/flare-client-php/tree/1.4.4" + "source": "https://github.com/spatie/flare-client-php/tree/1.7.0" }, "funding": [ { @@ -8000,28 +8066,28 @@ "type": "github" } ], - "time": "2024-01-31T14:18:45+00:00" + "time": "2024-06-12T14:39:14+00:00" }, { "name": "spatie/ignition", - "version": "1.13.1", + "version": "1.15.0", "source": { "type": "git", "url": "https://github.com/spatie/ignition.git", - "reference": "889bf1dfa59e161590f677728b47bf4a6893983b" + "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/ignition/zipball/889bf1dfa59e161590f677728b47bf4a6893983b", - "reference": "889bf1dfa59e161590f677728b47bf4a6893983b", + "url": "https://api.github.com/repos/spatie/ignition/zipball/e3a68e137371e1eb9edc7f78ffa733f3b98991d2", + "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2", "shasum": "" }, "require": { "ext-json": "*", "ext-mbstring": "*", "php": "^8.0", - "spatie/backtrace": "^1.5.3", - "spatie/flare-client-php": "^1.4.0", + "spatie/error-solutions": "^1.0", + "spatie/flare-client-php": "^1.7", "symfony/console": "^5.4|^6.0|^7.0", "symfony/var-dumper": "^5.4|^6.0|^7.0" }, @@ -8083,20 +8149,20 @@ "type": "github" } ], - "time": "2024-03-29T14:03:47+00:00" + "time": "2024-06-12T14:55:22+00:00" }, { "name": "spatie/laravel-backup", - "version": "8.6.0", + "version": "8.8.1", "source": { "type": "git", "url": "https://github.com/spatie/laravel-backup.git", - "reference": "c6a7607c0eea80efc2cf6628ffcd172f73a2088f" + "reference": "a9c2d2f726f4c60c2dc5d7c0c8380f72492638c2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-backup/zipball/c6a7607c0eea80efc2cf6628ffcd172f73a2088f", - "reference": "c6a7607c0eea80efc2cf6628ffcd172f73a2088f", + "url": "https://api.github.com/repos/spatie/laravel-backup/zipball/a9c2d2f726f4c60c2dc5d7c0c8380f72492638c2", + "reference": "a9c2d2f726f4c60c2dc5d7c0c8380f72492638c2", "shasum": "" }, "require": { @@ -8170,7 +8236,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-backup/issues", - "source": "https://github.com/spatie/laravel-backup/tree/8.6.0" + "source": "https://github.com/spatie/laravel-backup/tree/8.8.1" }, "funding": [ { @@ -8182,20 +8248,20 @@ "type": "other" } ], - "time": "2024-02-06T20:39:11+00:00" + "time": "2024-06-04T11:31:33+00:00" }, { "name": "spatie/laravel-ignition", - "version": "2.5.1", + "version": "2.8.0", "source": { "type": "git", "url": "https://github.com/spatie/laravel-ignition.git", - "reference": "0c864b3cbd66ce67a2096c5f743e07ce8f1d6ab9" + "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/0c864b3cbd66ce67a2096c5f743e07ce8f1d6ab9", - "reference": "0c864b3cbd66ce67a2096c5f743e07ce8f1d6ab9", + "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/3c067b75bfb50574db8f7e2c3978c65eed71126c", + "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c", "shasum": "" }, "require": { @@ -8204,8 +8270,7 @@ "ext-mbstring": "*", "illuminate/support": "^10.0|^11.0", "php": "^8.1", - "spatie/flare-client-php": "^1.3.5", - "spatie/ignition": "^1.13", + "spatie/ignition": "^1.15", "symfony/console": "^6.2.3|^7.0", "symfony/var-dumper": "^6.2.3|^7.0" }, @@ -8213,11 +8278,11 @@ "livewire/livewire": "^2.11|^3.3.5", "mockery/mockery": "^1.5.1", "openai-php/client": "^0.8.1", - "orchestra/testbench": "^8.0|^9.0", - "pestphp/pest": "^2.30", - "phpstan/extension-installer": "^1.2", + "orchestra/testbench": "8.22.3|^9.0", + "pestphp/pest": "^2.34", + "phpstan/extension-installer": "^1.3.1", "phpstan/phpstan-deprecation-rules": "^1.1.1", - "phpstan/phpstan-phpunit": "^1.3.3", + "phpstan/phpstan-phpunit": "^1.3.16", "vlucas/phpdotenv": "^5.5" }, "suggest": { @@ -8274,7 +8339,7 @@ "type": "github" } ], - "time": "2024-04-02T06:30:22+00:00" + "time": "2024-06-12T15:01:18+00:00" }, { "name": "spatie/laravel-package-tools", @@ -8473,16 +8538,16 @@ }, { "name": "symfony/console", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "0d9e4eb5ad413075624378f474c4167ea202de78" + "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/0d9e4eb5ad413075624378f474c4167ea202de78", - "reference": "0d9e4eb5ad413075624378f474c4167ea202de78", + "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91", + "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91", "shasum": "" }, "require": { @@ -8547,7 +8612,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v6.4.4" + "source": "https://github.com/symfony/console/tree/v6.4.8" }, "funding": [ { @@ -8563,7 +8628,7 @@ "type": "tidelift" } ], - "time": "2024-02-22T20:27:10+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/css-selector", @@ -8633,16 +8698,16 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v3.4.0", + "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf" + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf", - "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", "shasum": "" }, "require": { @@ -8651,7 +8716,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "3.4-dev" + "dev-main": "3.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -8680,7 +8745,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0" }, "funding": [ { @@ -8696,20 +8761,20 @@ "type": "tidelift" } ], - "time": "2023-05-23T14:45:45+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/error-handler", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "c725219bdf2afc59423c32793d5019d2a904e13a" + "reference": "ef836152bf13472dc5fb5b08b0c0c4cfeddc0fcc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/c725219bdf2afc59423c32793d5019d2a904e13a", - "reference": "c725219bdf2afc59423c32793d5019d2a904e13a", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/ef836152bf13472dc5fb5b08b0c0c4cfeddc0fcc", + "reference": "ef836152bf13472dc5fb5b08b0c0c4cfeddc0fcc", "shasum": "" }, "require": { @@ -8755,7 +8820,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v6.4.4" + "source": "https://github.com/symfony/error-handler/tree/v6.4.8" }, "funding": [ { @@ -8771,20 +8836,20 @@ "type": "tidelift" } ], - "time": "2024-02-22T20:27:10+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v6.4.3", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef" + "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ae9d3a6f3003a6caf56acd7466d8d52378d44fef", - "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b", + "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b", "shasum": "" }, "require": { @@ -8835,7 +8900,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.3" + "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8" }, "funding": [ { @@ -8851,20 +8916,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v3.4.0", + "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "a76aed96a42d2b521153fb382d418e30d18b59df" + "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df", - "reference": "a76aed96a42d2b521153fb382d418e30d18b59df", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50", + "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50", "shasum": "" }, "require": { @@ -8874,7 +8939,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "3.4-dev" + "dev-main": "3.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -8911,7 +8976,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0" }, "funding": [ { @@ -8927,20 +8992,20 @@ "type": "tidelift" } ], - "time": "2023-05-23T14:45:45+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/finder", - "version": "v6.4.0", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "11d736e97f116ac375a81f96e662911a34cd50ce" + "reference": "3ef977a43883215d560a2cecb82ec8e62131471c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce", - "reference": "11d736e97f116ac375a81f96e662911a34cd50ce", + "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c", + "reference": "3ef977a43883215d560a2cecb82ec8e62131471c", "shasum": "" }, "require": { @@ -8975,7 +9040,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v6.4.0" + "source": "https://github.com/symfony/finder/tree/v6.4.8" }, "funding": [ { @@ -8991,20 +9056,20 @@ "type": "tidelift" } ], - "time": "2023-10-31T17:30:12+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/http-foundation", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304" + "reference": "27de8cc95e11db7a50b027e71caaab9024545947" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ebc713bc6e6f4b53f46539fc158be85dfcd77304", - "reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947", + "reference": "27de8cc95e11db7a50b027e71caaab9024545947", "shasum": "" }, "require": { @@ -9052,7 +9117,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v6.4.4" + "source": "https://github.com/symfony/http-foundation/tree/v6.4.8" }, "funding": [ { @@ -9068,20 +9133,20 @@ "type": "tidelift" } ], - "time": "2024-02-08T15:01:18+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/http-kernel", - "version": "v6.4.5", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "f6947cb939d8efee137797382cb4db1af653ef75" + "reference": "6c519aa3f32adcfd1d1f18d923f6b227d9acf3c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f6947cb939d8efee137797382cb4db1af653ef75", - "reference": "f6947cb939d8efee137797382cb4db1af653ef75", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6c519aa3f32adcfd1d1f18d923f6b227d9acf3c1", + "reference": "6c519aa3f32adcfd1d1f18d923f6b227d9acf3c1", "shasum": "" }, "require": { @@ -9136,6 +9201,7 @@ "symfony/translation-contracts": "^2.5|^3", "symfony/uid": "^5.4|^6.0|^7.0", "symfony/validator": "^6.4|^7.0", + "symfony/var-dumper": "^5.4|^6.4|^7.0", "symfony/var-exporter": "^6.2|^7.0", "twig/twig": "^2.13|^3.0.4" }, @@ -9165,7 +9231,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v6.4.5" + "source": "https://github.com/symfony/http-kernel/tree/v6.4.8" }, "funding": [ { @@ -9181,20 +9247,20 @@ "type": "tidelift" } ], - "time": "2024-03-04T21:00:47+00:00" + "time": "2024-06-02T16:06:25+00:00" }, { "name": "symfony/mailer", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/mailer.git", - "reference": "791c5d31a8204cf3db0c66faab70282307f4376b" + "reference": "76326421d44c07f7824b19487cfbf87870b37efc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/791c5d31a8204cf3db0c66faab70282307f4376b", - "reference": "791c5d31a8204cf3db0c66faab70282307f4376b", + "url": "https://api.github.com/repos/symfony/mailer/zipball/76326421d44c07f7824b19487cfbf87870b37efc", + "reference": "76326421d44c07f7824b19487cfbf87870b37efc", "shasum": "" }, "require": { @@ -9245,7 +9311,7 @@ "description": "Helps sending emails", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailer/tree/v6.4.4" + "source": "https://github.com/symfony/mailer/tree/v6.4.8" }, "funding": [ { @@ -9261,20 +9327,20 @@ "type": "tidelift" } ], - "time": "2024-02-03T21:33:47+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/mime", - "version": "v6.4.3", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "5017e0a9398c77090b7694be46f20eb796262a34" + "reference": "618597ab8b78ac86d1c75a9d0b35540cda074f33" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/5017e0a9398c77090b7694be46f20eb796262a34", - "reference": "5017e0a9398c77090b7694be46f20eb796262a34", + "url": "https://api.github.com/repos/symfony/mime/zipball/618597ab8b78ac86d1c75a9d0b35540cda074f33", + "reference": "618597ab8b78ac86d1c75a9d0b35540cda074f33", "shasum": "" }, "require": { @@ -9295,6 +9361,7 @@ "league/html-to-markdown": "^5.0", "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.4|^7.0", "symfony/property-access": "^5.4|^6.0|^7.0", "symfony/property-info": "^5.4|^6.0|^7.0", "symfony/serializer": "^6.3.2|^7.0" @@ -9329,7 +9396,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v6.4.3" + "source": "https://github.com/symfony/mime/tree/v6.4.8" }, "funding": [ { @@ -9345,20 +9412,20 @@ "type": "tidelift" } ], - "time": "2024-01-30T08:32:12+00:00" + "time": "2024-06-01T07:50:16+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4" + "reference": "0424dff1c58f028c451efff2045f5d92410bd540" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4", - "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/0424dff1c58f028c451efff2045f5d92410bd540", + "reference": "0424dff1c58f028c451efff2045f5d92410bd540", "shasum": "" }, "require": { @@ -9408,7 +9475,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.30.0" }, "funding": [ { @@ -9424,20 +9491,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f" + "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f", - "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a", + "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a", "shasum": "" }, "require": { @@ -9486,7 +9553,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0" }, "funding": [ { @@ -9502,20 +9569,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "a287ed7475f85bf6f61890146edbc932c0fff919" + "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919", - "reference": "a287ed7475f85bf6f61890146edbc932c0fff919", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c", + "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c", "shasum": "" }, "require": { @@ -9570,7 +9637,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0" }, "funding": [ { @@ -9586,20 +9653,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "bc45c394692b948b4d383a08d7753968bed9a83d" + "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d", - "reference": "bc45c394692b948b4d383a08d7753968bed9a83d", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb", + "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb", "shasum": "" }, "require": { @@ -9651,7 +9718,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0" }, "funding": [ { @@ -9667,20 +9734,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec" + "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec", - "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c", + "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c", "shasum": "" }, "require": { @@ -9731,7 +9798,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0" }, "funding": [ { @@ -9747,20 +9814,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-06-19T12:30:46+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25" + "reference": "10112722600777e02d2745716b70c5db4ca70442" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25", - "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/10112722600777e02d2745716b70c5db4ca70442", + "reference": "10112722600777e02d2745716b70c5db4ca70442", "shasum": "" }, "require": { @@ -9804,7 +9871,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-php72/tree/v1.30.0" }, "funding": [ { @@ -9820,20 +9887,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-06-19T12:30:46+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b" + "reference": "77fa7995ac1b21ab60769b7323d600a991a90433" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", - "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433", + "reference": "77fa7995ac1b21ab60769b7323d600a991a90433", "shasum": "" }, "require": { @@ -9884,7 +9951,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0" }, "funding": [ { @@ -9900,25 +9967,24 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-php83", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php83.git", - "reference": "86fcae159633351e5fd145d1c47de6c528f8caff" + "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff", - "reference": "86fcae159633351e5fd145d1c47de6c528f8caff", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9", + "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9", "shasum": "" }, "require": { - "php": ">=7.1", - "symfony/polyfill-php80": "^1.14" + "php": ">=7.1" }, "type": "library", "extra": { @@ -9961,7 +10027,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-php83/tree/v1.30.0" }, "funding": [ { @@ -9977,20 +10043,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-06-19T12:35:24+00:00" }, { "name": "symfony/polyfill-uuid", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-uuid.git", - "reference": "3abdd21b0ceaa3000ee950097bc3cf9efc137853" + "reference": "2ba1f33797470debcda07fe9dce20a0003df18e9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/3abdd21b0ceaa3000ee950097bc3cf9efc137853", - "reference": "3abdd21b0ceaa3000ee950097bc3cf9efc137853", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/2ba1f33797470debcda07fe9dce20a0003df18e9", + "reference": "2ba1f33797470debcda07fe9dce20a0003df18e9", "shasum": "" }, "require": { @@ -10040,7 +10106,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/polyfill-uuid/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-uuid/tree/v1.30.0" }, "funding": [ { @@ -10056,20 +10122,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/process", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "710e27879e9be3395de2b98da3f52a946039f297" + "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/710e27879e9be3395de2b98da3f52a946039f297", - "reference": "710e27879e9be3395de2b98da3f52a946039f297", + "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5", + "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5", "shasum": "" }, "require": { @@ -10101,7 +10167,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v6.4.4" + "source": "https://github.com/symfony/process/tree/v6.4.8" }, "funding": [ { @@ -10117,7 +10183,7 @@ "type": "tidelift" } ], - "time": "2024-02-20T12:31:00+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/psr-http-message-bridge", @@ -10210,16 +10276,16 @@ }, { "name": "symfony/routing", - "version": "v6.4.5", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "7fe30068e207d9c31c0138501ab40358eb2d49a4" + "reference": "8a40d0f9b01f0fbb80885d3ce0ad6714fb603a58" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/7fe30068e207d9c31c0138501ab40358eb2d49a4", - "reference": "7fe30068e207d9c31c0138501ab40358eb2d49a4", + "url": "https://api.github.com/repos/symfony/routing/zipball/8a40d0f9b01f0fbb80885d3ce0ad6714fb603a58", + "reference": "8a40d0f9b01f0fbb80885d3ce0ad6714fb603a58", "shasum": "" }, "require": { @@ -10273,7 +10339,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v6.4.5" + "source": "https://github.com/symfony/routing/tree/v6.4.8" }, "funding": [ { @@ -10289,25 +10355,26 @@ "type": "tidelift" } ], - "time": "2024-02-27T12:33:30+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/service-contracts", - "version": "v3.4.1", + "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0" + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0", - "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", "shasum": "" }, "require": { "php": ">=8.1", - "psr/container": "^1.1|^2.0" + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" }, "conflict": { "ext-psr": "<1.1|>=2" @@ -10315,7 +10382,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "3.4-dev" + "dev-main": "3.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -10355,7 +10422,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.4.1" + "source": "https://github.com/symfony/service-contracts/tree/v3.5.0" }, "funding": [ { @@ -10371,20 +10438,20 @@ "type": "tidelift" } ], - "time": "2023-12-26T14:02:43+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/string", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9" + "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9", - "reference": "4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9", + "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d", + "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d", "shasum": "" }, "require": { @@ -10441,7 +10508,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v6.4.4" + "source": "https://github.com/symfony/string/tree/v6.4.8" }, "funding": [ { @@ -10457,20 +10524,20 @@ "type": "tidelift" } ], - "time": "2024-02-01T13:16:41+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/translation", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "bce6a5a78e94566641b2594d17e48b0da3184a8e" + "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/bce6a5a78e94566641b2594d17e48b0da3184a8e", - "reference": "bce6a5a78e94566641b2594d17e48b0da3184a8e", + "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a", + "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a", "shasum": "" }, "require": { @@ -10536,7 +10603,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v6.4.4" + "source": "https://github.com/symfony/translation/tree/v6.4.8" }, "funding": [ { @@ -10552,20 +10619,20 @@ "type": "tidelift" } ], - "time": "2024-02-20T13:16:58+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/translation-contracts", - "version": "v3.4.1", + "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "06450585bf65e978026bda220cdebca3f867fde7" + "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7", - "reference": "06450585bf65e978026bda220cdebca3f867fde7", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a", + "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a", "shasum": "" }, "require": { @@ -10574,7 +10641,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "3.4-dev" + "dev-main": "3.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -10614,7 +10681,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1" + "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0" }, "funding": [ { @@ -10630,20 +10697,20 @@ "type": "tidelift" } ], - "time": "2023-12-26T14:02:43+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/uid", - "version": "v6.4.3", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/uid.git", - "reference": "1d31267211cc3a2fff32bcfc7c1818dac41b6fc0" + "reference": "35904eca37a84bb764c560cbfcac9f0ac2bcdbdf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/uid/zipball/1d31267211cc3a2fff32bcfc7c1818dac41b6fc0", - "reference": "1d31267211cc3a2fff32bcfc7c1818dac41b6fc0", + "url": "https://api.github.com/repos/symfony/uid/zipball/35904eca37a84bb764c560cbfcac9f0ac2bcdbdf", + "reference": "35904eca37a84bb764c560cbfcac9f0ac2bcdbdf", "shasum": "" }, "require": { @@ -10688,7 +10755,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/uid/tree/v6.4.3" + "source": "https://github.com/symfony/uid/tree/v6.4.8" }, "funding": [ { @@ -10704,20 +10771,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/var-dumper", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "b439823f04c98b84d4366c79507e9da6230944b1" + "reference": "ad23ca4312395f0a8a8633c831ef4c4ee542ed25" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/b439823f04c98b84d4366c79507e9da6230944b1", - "reference": "b439823f04c98b84d4366c79507e9da6230944b1", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ad23ca4312395f0a8a8633c831ef4c4ee542ed25", + "reference": "ad23ca4312395f0a8a8633c831ef4c4ee542ed25", "shasum": "" }, "require": { @@ -10773,7 +10840,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v6.4.4" + "source": "https://github.com/symfony/var-dumper/tree/v6.4.8" }, "funding": [ { @@ -10789,7 +10856,7 @@ "type": "tidelift" } ], - "time": "2024-02-15T11:23:52+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "tecnickcom/tc-lib-barcode", @@ -11705,16 +11772,16 @@ }, { "name": "amphp/byte-stream", - "version": "v1.8.1", + "version": "v1.8.2", "source": { "type": "git", "url": "https://github.com/amphp/byte-stream.git", - "reference": "acbd8002b3536485c997c4e019206b3f10ca15bd" + "reference": "4f0e968ba3798a423730f567b1b50d3441c16ddc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/byte-stream/zipball/acbd8002b3536485c997c4e019206b3f10ca15bd", - "reference": "acbd8002b3536485c997c4e019206b3f10ca15bd", + "url": "https://api.github.com/repos/amphp/byte-stream/zipball/4f0e968ba3798a423730f567b1b50d3441c16ddc", + "reference": "4f0e968ba3798a423730f567b1b50d3441c16ddc", "shasum": "" }, "require": { @@ -11730,11 +11797,6 @@ "psalm/phar": "^3.11.4" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, "autoload": { "files": [ "lib/functions.php" @@ -11758,7 +11820,7 @@ } ], "description": "A stream abstraction to make working with non-blocking I/O simple.", - "homepage": "http://amphp.org/byte-stream", + "homepage": "https://amphp.org/byte-stream", "keywords": [ "amp", "amphp", @@ -11768,9 +11830,8 @@ "stream" ], "support": { - "irc": "irc://irc.freenode.org/amphp", "issues": "https://github.com/amphp/byte-stream/issues", - "source": "https://github.com/amphp/byte-stream/tree/v1.8.1" + "source": "https://github.com/amphp/byte-stream/tree/v1.8.2" }, "funding": [ { @@ -11778,7 +11839,7 @@ "type": "github" } ], - "time": "2021-03-30T17:13:30+00:00" + "time": "2024-04-13T18:00:56+00:00" }, { "name": "brianium/paratest", @@ -11872,6 +11933,70 @@ ], "time": "2024-03-13T06:54:29+00:00" }, + { + "name": "clue/ndjson-react", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/clue/reactphp-ndjson.git", + "reference": "392dc165fce93b5bb5c637b67e59619223c931b0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0", + "reference": "392dc165fce93b5bb5c637b67e59619223c931b0", + "shasum": "" + }, + "require": { + "php": ">=5.3", + "react/stream": "^1.2" + }, + "require-dev": { + "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35", + "react/event-loop": "^1.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Clue\\React\\NDJson\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering" + } + ], + "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.", + "homepage": "https://github.com/clue/reactphp-ndjson", + "keywords": [ + "NDJSON", + "json", + "jsonlines", + "newline", + "reactphp", + "streaming" + ], + "support": { + "issues": "https://github.com/clue/reactphp-ndjson/issues", + "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0" + }, + "funding": [ + { + "url": "https://clue.engineering/support", + "type": "custom" + }, + { + "url": "https://github.com/clue", + "type": "github" + } + ], + "time": "2022-12-23T10:58:28+00:00" + }, { "name": "cmgmyr/phploc", "version": "8.0.3", @@ -11939,16 +12064,16 @@ }, { "name": "composer/pcre", - "version": "3.1.3", + "version": "3.1.4", "source": { "type": "git", "url": "https://github.com/composer/pcre.git", - "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8" + "reference": "04229f163664973f68f38f6f73d917799168ef24" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/pcre/zipball/5b16e25a5355f1f3afdfc2f954a0a80aec4826a8", - "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8", + "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24", + "reference": "04229f163664973f68f38f6f73d917799168ef24", "shasum": "" }, "require": { @@ -11990,7 +12115,7 @@ ], "support": { "issues": "https://github.com/composer/pcre/issues", - "source": "https://github.com/composer/pcre/tree/3.1.3" + "source": "https://github.com/composer/pcre/tree/3.1.4" }, "funding": [ { @@ -12006,7 +12131,7 @@ "type": "tidelift" } ], - "time": "2024-03-19T10:26:25+00:00" + "time": "2024-05-27T13:40:54+00:00" }, { "name": "composer/semver", @@ -12091,16 +12216,16 @@ }, { "name": "composer/xdebug-handler", - "version": "3.0.4", + "version": "3.0.5", "source": { "type": "git", "url": "https://github.com/composer/xdebug-handler.git", - "reference": "4f988f8fdf580d53bdb2d1278fe93d1ed5462255" + "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/4f988f8fdf580d53bdb2d1278fe93d1ed5462255", - "reference": "4f988f8fdf580d53bdb2d1278fe93d1ed5462255", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef", + "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef", "shasum": "" }, "require": { @@ -12137,7 +12262,7 @@ "support": { "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/xdebug-handler/issues", - "source": "https://github.com/composer/xdebug-handler/tree/3.0.4" + "source": "https://github.com/composer/xdebug-handler/tree/3.0.5" }, "funding": [ { @@ -12153,7 +12278,7 @@ "type": "tidelift" } ], - "time": "2024-03-26T18:29:49+00:00" + "time": "2024-05-06T16:37:16+00:00" }, { "name": "dealerdirect/phpcodesniffer-composer-installer", @@ -12270,6 +12395,53 @@ }, "time": "2019-12-04T15:06:13+00:00" }, + { + "name": "evenement/evenement", + "version": "v3.0.2", + "source": { + "type": "git", + "url": "https://github.com/igorw/evenement.git", + "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc", + "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc", + "shasum": "" + }, + "require": { + "php": ">=7.0" + }, + "require-dev": { + "phpunit/phpunit": "^9 || ^6" + }, + "type": "library", + "autoload": { + "psr-4": { + "Evenement\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Igor Wiedler", + "email": "igor@wiedler.ch" + } + ], + "description": "Événement is a very simple event dispatching library for PHP", + "keywords": [ + "event-dispatcher", + "event-emitter" + ], + "support": { + "issues": "https://github.com/igorw/evenement/issues", + "source": "https://github.com/igorw/evenement/tree/v3.0.2" + }, + "time": "2023-08-08T05:53:35+00:00" + }, { "name": "fakerphp/faker", "version": "v1.23.1", @@ -12497,25 +12669,32 @@ }, { "name": "friendsofphp/php-cs-fixer", - "version": "v3.52.1", + "version": "v3.59.3", "source": { "type": "git", "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git", - "reference": "6e77207f0d851862ceeb6da63e6e22c01b1587bc" + "reference": "30ba9ecc2b0e5205e578fe29973c15653d9bfd29" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/6e77207f0d851862ceeb6da63e6e22c01b1587bc", - "reference": "6e77207f0d851862ceeb6da63e6e22c01b1587bc", + "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/30ba9ecc2b0e5205e578fe29973c15653d9bfd29", + "reference": "30ba9ecc2b0e5205e578fe29973c15653d9bfd29", "shasum": "" }, "require": { + "clue/ndjson-react": "^1.0", "composer/semver": "^3.4", "composer/xdebug-handler": "^3.0.3", "ext-filter": "*", "ext-json": "*", "ext-tokenizer": "*", + "fidry/cpu-core-counter": "^1.0", "php": "^7.4 || ^8.0", + "react/child-process": "^0.6.5", + "react/event-loop": "^1.0", + "react/promise": "^2.0 || ^3.0", + "react/socket": "^1.0", + "react/stream": "^1.0", "sebastian/diff": "^4.0 || ^5.0 || ^6.0", "symfony/console": "^5.4 || ^6.0 || ^7.0", "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0", @@ -12529,15 +12708,16 @@ "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0" }, "require-dev": { - "facile-it/paraunit": "^1.3 || ^2.0", + "facile-it/paraunit": "^1.3 || ^2.3", + "infection/infection": "^0.29.5", "justinrainbow/json-schema": "^5.2", "keradus/cli-executor": "^2.1", "mikey179/vfsstream": "^1.6.11", "php-coveralls/php-coveralls": "^2.7", "php-cs-fixer/accessible-object": "^1.1", - "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4", - "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4", - "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2", + "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5", + "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5", + "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2", "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0", "symfony/yaml": "^5.4 || ^6.0 || ^7.0" }, @@ -12552,7 +12732,10 @@ "autoload": { "psr-4": { "PhpCsFixer\\": "src/" - } + }, + "exclude-from-classmap": [ + "src/Fixer/Internal/*" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -12577,7 +12760,7 @@ ], "support": { "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues", - "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.52.1" + "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.59.3" }, "funding": [ { @@ -12585,7 +12768,7 @@ "type": "github" } ], - "time": "2024-03-19T21:02:43+00:00" + "time": "2024-06-16T14:17:03+00:00" }, { "name": "hamcrest/hamcrest-php", @@ -12702,12 +12885,12 @@ "version": "v5.2.13", "source": { "type": "git", - "url": "https://github.com/justinrainbow/json-schema.git", + "url": "https://github.com/jsonrainbow/json-schema.git", "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793", + "url": "https://api.github.com/repos/jsonrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793", "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793", "shasum": "" }, @@ -12762,11 +12945,113 @@ "schema" ], "support": { - "issues": "https://github.com/justinrainbow/json-schema/issues", - "source": "https://github.com/justinrainbow/json-schema/tree/v5.2.13" + "issues": "https://github.com/jsonrainbow/json-schema/issues", + "source": "https://github.com/jsonrainbow/json-schema/tree/v5.2.13" }, "time": "2023-09-26T02:20:38+00:00" }, + { + "name": "larastan/larastan", + "version": "v2.9.7", + "source": { + "type": "git", + "url": "https://github.com/larastan/larastan.git", + "reference": "5c805f636095cc2e0b659e3954775cf8f1dad1bb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/larastan/larastan/zipball/5c805f636095cc2e0b659e3954775cf8f1dad1bb", + "reference": "5c805f636095cc2e0b659e3954775cf8f1dad1bb", + "shasum": "" + }, + "require": { + "ext-json": "*", + "illuminate/console": "^9.52.16 || ^10.28.0 || ^11.0", + "illuminate/container": "^9.52.16 || ^10.28.0 || ^11.0", + "illuminate/contracts": "^9.52.16 || ^10.28.0 || ^11.0", + "illuminate/database": "^9.52.16 || ^10.28.0 || ^11.0", + "illuminate/http": "^9.52.16 || ^10.28.0 || ^11.0", + "illuminate/pipeline": "^9.52.16 || ^10.28.0 || ^11.0", + "illuminate/support": "^9.52.16 || ^10.28.0 || ^11.0", + "php": "^8.0.2", + "phpmyadmin/sql-parser": "^5.9.0", + "phpstan/phpstan": "^1.11.1" + }, + "require-dev": { + "doctrine/coding-standard": "^12.0", + "nikic/php-parser": "^4.19.1", + "orchestra/canvas": "^7.11.1 || ^8.11.0 || ^9.0.2", + "orchestra/testbench": "^7.33.0 || ^8.13.0 || ^9.0.3", + "phpunit/phpunit": "^9.6.13 || ^10.5.16" + }, + "suggest": { + "orchestra/testbench": "Using Larastan for analysing a package needs Testbench" + }, + "type": "phpstan-extension", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + } + }, + "autoload": { + "psr-4": { + "Larastan\\Larastan\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Can Vural", + "email": "can9119@gmail.com" + }, + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Larastan - Discover bugs in your code without running it. A phpstan/phpstan wrapper for Laravel", + "keywords": [ + "PHPStan", + "code analyse", + "code analysis", + "larastan", + "laravel", + "package", + "php", + "static analysis" + ], + "support": { + "issues": "https://github.com/larastan/larastan/issues", + "source": "https://github.com/larastan/larastan/tree/v2.9.7" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/canvural", + "type": "github" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://www.patreon.com/nunomaduro", + "type": "patreon" + } + ], + "time": "2024-05-27T18:33:26+00:00" + }, { "name": "league/container", "version": "4.2.2", @@ -12851,16 +13136,16 @@ }, { "name": "mockery/mockery", - "version": "1.6.11", + "version": "1.6.12", "source": { "type": "git", "url": "https://github.com/mockery/mockery.git", - "reference": "81a161d0b135df89951abd52296adf97deb0723d" + "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mockery/mockery/zipball/81a161d0b135df89951abd52296adf97deb0723d", - "reference": "81a161d0b135df89951abd52296adf97deb0723d", + "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699", + "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699", "shasum": "" }, "require": { @@ -12930,20 +13215,20 @@ "security": "https://github.com/mockery/mockery/security/advisories", "source": "https://github.com/mockery/mockery" }, - "time": "2024-03-21T18:34:15+00:00" + "time": "2024-05-16T03:13:13+00:00" }, { "name": "myclabs/deep-copy", - "version": "1.11.1", + "version": "1.12.0", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", "shasum": "" }, "require": { @@ -12951,11 +13236,12 @@ }, "conflict": { "doctrine/collections": "<1.6.8", - "doctrine/common": "<2.13.3 || >=3,<3.2.2" + "doctrine/common": "<2.13.3 || >=3 <3.2.2" }, "require-dev": { "doctrine/collections": "^1.6.8", "doctrine/common": "^2.13.3 || ^3.2.2", + "phpspec/prophecy": "^1.10", "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" }, "type": "library", @@ -12981,7 +13267,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" + "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0" }, "funding": [ { @@ -12989,7 +13275,7 @@ "type": "tidelift" } ], - "time": "2023-03-08T13:26:56+00:00" + "time": "2024-06-12T14:39:25+00:00" }, { "name": "netresearch/jsonmapper", @@ -13042,109 +13328,6 @@ }, "time": "2024-01-31T06:18:54+00:00" }, - { - "name": "nunomaduro/larastan", - "version": "v2.9.2", - "source": { - "type": "git", - "url": "https://github.com/larastan/larastan.git", - "reference": "a79b46b96060504b400890674b83f66aa7f5db6d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/larastan/larastan/zipball/a79b46b96060504b400890674b83f66aa7f5db6d", - "reference": "a79b46b96060504b400890674b83f66aa7f5db6d", - "shasum": "" - }, - "require": { - "ext-json": "*", - "illuminate/console": "^9.52.16 || ^10.28.0 || ^11.0", - "illuminate/container": "^9.52.16 || ^10.28.0 || ^11.0", - "illuminate/contracts": "^9.52.16 || ^10.28.0 || ^11.0", - "illuminate/database": "^9.52.16 || ^10.28.0 || ^11.0", - "illuminate/http": "^9.52.16 || ^10.28.0 || ^11.0", - "illuminate/pipeline": "^9.52.16 || ^10.28.0 || ^11.0", - "illuminate/support": "^9.52.16 || ^10.28.0 || ^11.0", - "php": "^8.0.2", - "phpmyadmin/sql-parser": "^5.8.2", - "phpstan/phpstan": "^1.10.50" - }, - "require-dev": { - "doctrine/coding-standard": "^12.0", - "nikic/php-parser": "^4.17.1", - "orchestra/canvas": "^7.11.1 || ^8.11.0 || ^9.0.0", - "orchestra/testbench": "^7.33.0 || ^8.13.0 || ^9.0.0", - "phpunit/phpunit": "^9.6.13 || ^10.5" - }, - "suggest": { - "orchestra/testbench": "Using Larastan for analysing a package needs Testbench" - }, - "type": "phpstan-extension", - "extra": { - "branch-alias": { - "dev-master": "2.0-dev" - }, - "phpstan": { - "includes": [ - "extension.neon" - ] - } - }, - "autoload": { - "psr-4": { - "Larastan\\Larastan\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Can Vural", - "email": "can9119@gmail.com" - }, - { - "name": "Nuno Maduro", - "email": "enunomaduro@gmail.com" - } - ], - "description": "Larastan - Discover bugs in your code without running it. A phpstan/phpstan wrapper for Laravel", - "keywords": [ - "PHPStan", - "code analyse", - "code analysis", - "larastan", - "laravel", - "package", - "php", - "static analysis" - ], - "support": { - "issues": "https://github.com/larastan/larastan/issues", - "source": "https://github.com/larastan/larastan/tree/v2.9.2" - }, - "funding": [ - { - "url": "https://www.paypal.com/paypalme/enunomaduro", - "type": "custom" - }, - { - "url": "https://github.com/canvural", - "type": "github" - }, - { - "url": "https://github.com/nunomaduro", - "type": "github" - }, - { - "url": "https://www.patreon.com/nunomaduro", - "type": "patreon" - } - ], - "abandoned": "larastan/larastan", - "time": "2024-02-27T03:16:03+00:00" - }, { "name": "nunomaduro/phpinsights", "version": "v2.11.0", @@ -13727,16 +13910,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.10.66", + "version": "1.11.5", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "94779c987e4ebd620025d9e5fdd23323903950bd" + "reference": "490f0ae1c92b082f154681d7849aee776a7c1443" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/94779c987e4ebd620025d9e5fdd23323903950bd", - "reference": "94779c987e4ebd620025d9e5fdd23323903950bd", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/490f0ae1c92b082f154681d7849aee776a7c1443", + "reference": "490f0ae1c92b082f154681d7849aee776a7c1443", "shasum": "" }, "require": { @@ -13779,13 +13962,9 @@ { "url": "https://github.com/phpstan", "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan", - "type": "tidelift" } ], - "time": "2024-03-28T16:17:31+00:00" + "time": "2024-06-17T15:10:54+00:00" }, { "name": "phpunit/php-code-coverage", @@ -14106,78 +14285,18 @@ ], "time": "2020-10-26T13:16:10+00:00" }, - { - "name": "phpunit/php-token-stream", - "version": "3.1.3", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/php-token-stream.git", - "reference": "9c1da83261628cb24b6a6df371b6e312b3954768" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/9c1da83261628cb24b6a6df371b6e312b3954768", - "reference": "9c1da83261628cb24b6a6df371b6e312b3954768", - "shasum": "" - }, - "require": { - "ext-tokenizer": "*", - "php": ">=7.1" - }, - "require-dev": { - "phpunit/phpunit": "^7.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.1-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Wrapper around PHP's tokenizer extension.", - "homepage": "https://github.com/sebastianbergmann/php-token-stream/", - "keywords": [ - "tokenizer" - ], - "support": { - "issues": "https://github.com/sebastianbergmann/php-token-stream/issues", - "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.3" - }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - } - ], - "abandoned": true, - "time": "2021-07-26T12:15:06+00:00" - }, { "name": "phpunit/phpunit", - "version": "9.6.18", + "version": "9.6.19", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "32c2c2d6580b1d8ab3c10b1e9e4dc263cc69bb04" + "reference": "a1a54a473501ef4cdeaae4e06891674114d79db8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/32c2c2d6580b1d8ab3c10b1e9e4dc263cc69bb04", - "reference": "32c2c2d6580b1d8ab3c10b1e9e4dc263cc69bb04", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a1a54a473501ef4cdeaae4e06891674114d79db8", + "reference": "a1a54a473501ef4cdeaae4e06891674114d79db8", "shasum": "" }, "require": { @@ -14251,7 +14370,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.18" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.19" }, "funding": [ { @@ -14267,7 +14386,537 @@ "type": "tidelift" } ], - "time": "2024-03-21T12:07:32+00:00" + "time": "2024-04-05T04:35:58+00:00" + }, + { + "name": "react/cache", + "version": "v1.2.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/cache.git", + "reference": "d47c472b64aa5608225f47965a484b75c7817d5b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b", + "reference": "d47c472b64aa5608225f47965a484b75c7817d5b", + "shasum": "" + }, + "require": { + "php": ">=5.3.0", + "react/promise": "^3.0 || ^2.0 || ^1.1" + }, + "require-dev": { + "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\Cache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "Async, Promise-based cache interface for ReactPHP", + "keywords": [ + "cache", + "caching", + "promise", + "reactphp" + ], + "support": { + "issues": "https://github.com/reactphp/cache/issues", + "source": "https://github.com/reactphp/cache/tree/v1.2.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2022-11-30T15:59:55+00:00" + }, + { + "name": "react/child-process", + "version": "v0.6.5", + "source": { + "type": "git", + "url": "https://github.com/reactphp/child-process.git", + "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43", + "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43", + "shasum": "" + }, + "require": { + "evenement/evenement": "^3.0 || ^2.0 || ^1.0", + "php": ">=5.3.0", + "react/event-loop": "^1.2", + "react/stream": "^1.2" + }, + "require-dev": { + "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35", + "react/socket": "^1.8", + "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\ChildProcess\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "Event-driven library for executing child processes with ReactPHP.", + "keywords": [ + "event-driven", + "process", + "reactphp" + ], + "support": { + "issues": "https://github.com/reactphp/child-process/issues", + "source": "https://github.com/reactphp/child-process/tree/v0.6.5" + }, + "funding": [ + { + "url": "https://github.com/WyriHaximus", + "type": "github" + }, + { + "url": "https://github.com/clue", + "type": "github" + } + ], + "time": "2022-09-16T13:41:56+00:00" + }, + { + "name": "react/dns", + "version": "v1.13.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/dns.git", + "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5", + "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5", + "shasum": "" + }, + "require": { + "php": ">=5.3.0", + "react/cache": "^1.0 || ^0.6 || ^0.5", + "react/event-loop": "^1.2", + "react/promise": "^3.2 || ^2.7 || ^1.2.1" + }, + "require-dev": { + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36", + "react/async": "^4.3 || ^3 || ^2", + "react/promise-timer": "^1.11" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\Dns\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "Async DNS resolver for ReactPHP", + "keywords": [ + "async", + "dns", + "dns-resolver", + "reactphp" + ], + "support": { + "issues": "https://github.com/reactphp/dns/issues", + "source": "https://github.com/reactphp/dns/tree/v1.13.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2024-06-13T14:18:03+00:00" + }, + { + "name": "react/event-loop", + "version": "v1.5.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/event-loop.git", + "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354", + "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36" + }, + "suggest": { + "ext-pcntl": "For signal handling support when using the StreamSelectLoop" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\EventLoop\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.", + "keywords": [ + "asynchronous", + "event-loop" + ], + "support": { + "issues": "https://github.com/reactphp/event-loop/issues", + "source": "https://github.com/reactphp/event-loop/tree/v1.5.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2023-11-13T13:48:05+00:00" + }, + { + "name": "react/promise", + "version": "v3.2.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/promise.git", + "reference": "8a164643313c71354582dc850b42b33fa12a4b63" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63", + "reference": "8a164643313c71354582dc850b42b33fa12a4b63", + "shasum": "" + }, + "require": { + "php": ">=7.1.0" + }, + "require-dev": { + "phpstan/phpstan": "1.10.39 || 1.4.10", + "phpunit/phpunit": "^9.6 || ^7.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "React\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "A lightweight implementation of CommonJS Promises/A for PHP", + "keywords": [ + "promise", + "promises" + ], + "support": { + "issues": "https://github.com/reactphp/promise/issues", + "source": "https://github.com/reactphp/promise/tree/v3.2.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2024-05-24T10:39:05+00:00" + }, + { + "name": "react/socket", + "version": "v1.15.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/socket.git", + "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038", + "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038", + "shasum": "" + }, + "require": { + "evenement/evenement": "^3.0 || ^2.0 || ^1.0", + "php": ">=5.3.0", + "react/dns": "^1.11", + "react/event-loop": "^1.2", + "react/promise": "^3 || ^2.6 || ^1.2.1", + "react/stream": "^1.2" + }, + "require-dev": { + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36", + "react/async": "^4 || ^3 || ^2", + "react/promise-stream": "^1.4", + "react/promise-timer": "^1.10" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\Socket\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP", + "keywords": [ + "Connection", + "Socket", + "async", + "reactphp", + "stream" + ], + "support": { + "issues": "https://github.com/reactphp/socket/issues", + "source": "https://github.com/reactphp/socket/tree/v1.15.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2023-12-15T11:02:10+00:00" + }, + { + "name": "react/stream", + "version": "v1.4.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/stream.git", + "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d", + "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d", + "shasum": "" + }, + "require": { + "evenement/evenement": "^3.0 || ^2.0 || ^1.0", + "php": ">=5.3.8", + "react/event-loop": "^1.2" + }, + "require-dev": { + "clue/stream-filter": "~1.2", + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\Stream\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP", + "keywords": [ + "event-driven", + "io", + "non-blocking", + "pipe", + "reactphp", + "readable", + "stream", + "writable" + ], + "support": { + "issues": "https://github.com/reactphp/stream/issues", + "source": "https://github.com/reactphp/stream/tree/v1.4.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2024-06-11T12:45:25+00:00" }, { "name": "sebastian/cli-parser", @@ -15019,16 +15668,16 @@ }, { "name": "spatie/array-to-xml", - "version": "3.2.3", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/spatie/array-to-xml.git", - "reference": "c95fd4db94ec199f798d4b5b4a81757bd20d88ab" + "reference": "f56b220fe2db1ade4c88098d83413ebdfc3bf876" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/array-to-xml/zipball/c95fd4db94ec199f798d4b5b4a81757bd20d88ab", - "reference": "c95fd4db94ec199f798d4b5b4a81757bd20d88ab", + "url": "https://api.github.com/repos/spatie/array-to-xml/zipball/f56b220fe2db1ade4c88098d83413ebdfc3bf876", + "reference": "f56b220fe2db1ade4c88098d83413ebdfc3bf876", "shasum": "" }, "require": { @@ -15041,6 +15690,11 @@ "spatie/pest-plugin-snapshots": "^1.1" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, "autoload": { "psr-4": { "Spatie\\ArrayToXml\\": "src" @@ -15066,7 +15720,7 @@ "xml" ], "support": { - "source": "https://github.com/spatie/array-to-xml/tree/3.2.3" + "source": "https://github.com/spatie/array-to-xml/tree/3.3.0" }, "funding": [ { @@ -15078,20 +15732,20 @@ "type": "github" } ], - "time": "2024-02-07T10:39:02+00:00" + "time": "2024-05-01T10:20:27+00:00" }, { "name": "squizlabs/php_codesniffer", - "version": "3.9.1", + "version": "3.10.1", "source": { "type": "git", "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", - "reference": "267a4405fff1d9c847134db3a3c92f1ab7f77909" + "reference": "8f90f7a53ce271935282967f53d0894f8f1ff877" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/267a4405fff1d9c847134db3a3c92f1ab7f77909", - "reference": "267a4405fff1d9c847134db3a3c92f1ab7f77909", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/8f90f7a53ce271935282967f53d0894f8f1ff877", + "reference": "8f90f7a53ce271935282967f53d0894f8f1ff877", "shasum": "" }, "require": { @@ -15158,20 +15812,20 @@ "type": "open_collective" } ], - "time": "2024-03-31T21:03:09+00:00" + "time": "2024-05-22T21:24:41+00:00" }, { "name": "symfony/cache", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "0ef36534694c572ff526d91c7181f3edede176e7" + "reference": "287142df5579ce223c485b3872df3efae8390984" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/0ef36534694c572ff526d91c7181f3edede176e7", - "reference": "0ef36534694c572ff526d91c7181f3edede176e7", + "url": "https://api.github.com/repos/symfony/cache/zipball/287142df5579ce223c485b3872df3efae8390984", + "reference": "287142df5579ce223c485b3872df3efae8390984", "shasum": "" }, "require": { @@ -15238,7 +15892,7 @@ "psr6" ], "support": { - "source": "https://github.com/symfony/cache/tree/v6.4.4" + "source": "https://github.com/symfony/cache/tree/v6.4.8" }, "funding": [ { @@ -15254,20 +15908,20 @@ "type": "tidelift" } ], - "time": "2024-02-22T20:27:10+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/cache-contracts", - "version": "v3.4.0", + "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/symfony/cache-contracts.git", - "reference": "1d74b127da04ffa87aa940abe15446fa89653778" + "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1d74b127da04ffa87aa940abe15446fa89653778", - "reference": "1d74b127da04ffa87aa940abe15446fa89653778", + "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197", + "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197", "shasum": "" }, "require": { @@ -15277,7 +15931,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "3.4-dev" + "dev-main": "3.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -15314,7 +15968,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/cache-contracts/tree/v3.4.0" + "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0" }, "funding": [ { @@ -15330,7 +15984,7 @@ "type": "tidelift" } ], - "time": "2023-09-25T12:52:38+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/dom-crawler", @@ -15408,16 +16062,16 @@ }, { "name": "symfony/filesystem", - "version": "v6.4.3", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb" + "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb", - "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3", + "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3", "shasum": "" }, "require": { @@ -15425,6 +16079,9 @@ "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-mbstring": "~1.8" }, + "require-dev": { + "symfony/process": "^5.4|^6.4|^7.0" + }, "type": "library", "autoload": { "psr-4": { @@ -15451,7 +16108,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v6.4.3" + "source": "https://github.com/symfony/filesystem/tree/v6.4.8" }, "funding": [ { @@ -15467,27 +16124,27 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/http-client", - "version": "v6.4.5", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/http-client.git", - "reference": "f3c86a60a3615f466333a11fd42010d4382a82c7" + "reference": "61faba993e620fc22d4f0ab3b6bcf8fbb0d44b05" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/f3c86a60a3615f466333a11fd42010d4382a82c7", - "reference": "f3c86a60a3615f466333a11fd42010d4382a82c7", + "url": "https://api.github.com/repos/symfony/http-client/zipball/61faba993e620fc22d4f0ab3b6bcf8fbb0d44b05", + "reference": "61faba993e620fc22d4f0ab3b6bcf8fbb0d44b05", "shasum": "" }, "require": { "php": ">=8.1", "psr/log": "^1|^2|^3", "symfony/deprecation-contracts": "^2.5|^3", - "symfony/http-client-contracts": "^3", + "symfony/http-client-contracts": "^3.4.1", "symfony/service-contracts": "^2.5|^3" }, "conflict": { @@ -15505,7 +16162,7 @@ "amphp/http-client": "^4.2.1", "amphp/http-tunnel": "^1.0", "amphp/socket": "^1.1", - "guzzlehttp/promises": "^1.4", + "guzzlehttp/promises": "^1.4|^2.0", "nyholm/psr7": "^1.0", "php-http/httplug": "^1.0|^2.0", "psr/http-client": "^1.0", @@ -15544,7 +16201,7 @@ "http" ], "support": { - "source": "https://github.com/symfony/http-client/tree/v6.4.5" + "source": "https://github.com/symfony/http-client/tree/v6.4.8" }, "funding": [ { @@ -15560,20 +16217,20 @@ "type": "tidelift" } ], - "time": "2024-03-02T12:45:30+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/http-client-contracts", - "version": "v3.4.0", + "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/symfony/http-client-contracts.git", - "reference": "1ee70e699b41909c209a0c930f11034b93578654" + "reference": "20414d96f391677bf80078aa55baece78b82647d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/1ee70e699b41909c209a0c930f11034b93578654", - "reference": "1ee70e699b41909c209a0c930f11034b93578654", + "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d", + "reference": "20414d96f391677bf80078aa55baece78b82647d", "shasum": "" }, "require": { @@ -15582,7 +16239,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "3.4-dev" + "dev-main": "3.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -15622,7 +16279,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/http-client-contracts/tree/v3.4.0" + "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0" }, "funding": [ { @@ -15638,20 +16295,20 @@ "type": "tidelift" } ], - "time": "2023-07-30T20:28:31+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/options-resolver", - "version": "v6.4.0", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "22301f0e7fdeaacc14318928612dee79be99860e" + "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22301f0e7fdeaacc14318928612dee79be99860e", - "reference": "22301f0e7fdeaacc14318928612dee79be99860e", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b", + "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b", "shasum": "" }, "require": { @@ -15689,7 +16346,7 @@ "options" ], "support": { - "source": "https://github.com/symfony/options-resolver/tree/v6.4.0" + "source": "https://github.com/symfony/options-resolver/tree/v6.4.8" }, "funding": [ { @@ -15705,20 +16362,20 @@ "type": "tidelift" } ], - "time": "2023-08-08T10:16:24+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/polyfill-php81", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php81.git", - "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d" + "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d", - "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/3fb075789fb91f9ad9af537c4012d523085bd5af", + "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af", "shasum": "" }, "require": { @@ -15765,7 +16422,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-php81/tree/v1.30.0" }, "funding": [ { @@ -15781,20 +16438,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-06-19T12:30:46+00:00" }, { "name": "symfony/stopwatch", - "version": "v6.4.3", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", - "reference": "416596166641f1f728b0a64f5b9dd07cceb410c1" + "reference": "63e069eb616049632cde9674c46957819454b8aa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/stopwatch/zipball/416596166641f1f728b0a64f5b9dd07cceb410c1", - "reference": "416596166641f1f728b0a64f5b9dd07cceb410c1", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa", + "reference": "63e069eb616049632cde9674c46957819454b8aa", "shasum": "" }, "require": { @@ -15827,7 +16484,7 @@ "description": "Provides a way to profile code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/stopwatch/tree/v6.4.3" + "source": "https://github.com/symfony/stopwatch/tree/v6.4.8" }, "funding": [ { @@ -15843,20 +16500,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:35:58+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/var-exporter", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/var-exporter.git", - "reference": "0bd342e24aef49fc82a21bd4eedd3e665d177e5b" + "reference": "792ca836f99b340f2e9ca9497c7953948c49a504" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0bd342e24aef49fc82a21bd4eedd3e665d177e5b", - "reference": "0bd342e24aef49fc82a21bd4eedd3e665d177e5b", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/792ca836f99b340f2e9ca9497c7953948c49a504", + "reference": "792ca836f99b340f2e9ca9497c7953948c49a504", "shasum": "" }, "require": { @@ -15864,6 +16521,8 @@ "symfony/deprecation-contracts": "^2.5|^3" }, "require-dev": { + "symfony/property-access": "^6.4|^7.0", + "symfony/serializer": "^6.4|^7.0", "symfony/var-dumper": "^5.4|^6.0|^7.0" }, "type": "library", @@ -15902,7 +16561,7 @@ "serialize" ], "support": { - "source": "https://github.com/symfony/var-exporter/tree/v6.4.4" + "source": "https://github.com/symfony/var-exporter/tree/v6.4.8" }, "funding": [ { @@ -15918,7 +16577,7 @@ "type": "tidelift" } ], - "time": "2024-02-26T08:37:45+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "theseer/tokenizer", @@ -15972,16 +16631,16 @@ }, { "name": "vimeo/psalm", - "version": "5.23.1", + "version": "5.25.0", "source": { "type": "git", "url": "https://github.com/vimeo/psalm.git", - "reference": "8471a896ccea3526b26d082f4461eeea467f10a4" + "reference": "01a8eb06b9e9cc6cfb6a320bf9fb14331919d505" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vimeo/psalm/zipball/8471a896ccea3526b26d082f4461eeea467f10a4", - "reference": "8471a896ccea3526b26d082f4461eeea467f10a4", + "url": "https://api.github.com/repos/vimeo/psalm/zipball/01a8eb06b9e9cc6cfb6a320bf9fb14331919d505", + "reference": "01a8eb06b9e9cc6cfb6a320bf9fb14331919d505", "shasum": "" }, "require": { @@ -16078,7 +16737,7 @@ "issues": "https://github.com/vimeo/psalm/issues", "source": "https://github.com/vimeo/psalm" }, - "time": "2024-03-11T20:33:46+00:00" + "time": "2024-06-16T15:08:35+00:00" } ], "aliases": [], diff --git a/config/app.php b/config/app.php index 727a6343a..173af7f8f 100755 --- a/config/app.php +++ b/config/app.php @@ -112,7 +112,7 @@ return [ | */ - 'fallback_locale' => 'en-US', + 'fallback_locale' => env('FALLBACK_APP_LOCALE', 'en'), /* |-------------------------------------------------------------------------- diff --git a/config/backup.php b/config/backup.php index 4484877b1..10ebdde03 100644 --- a/config/backup.php +++ b/config/backup.php @@ -137,6 +137,11 @@ return [ 'mail' => [ 'to' => env('MAIL_BACKUP_NOTIFICATION_ADDRESS', null), + + 'from' => [ + 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), + 'name' => env('MAIL_FROM_NAME', 'Example'), + ], ], 'slack' => [ @@ -152,6 +157,20 @@ return [ 'icon' => null, ], + + 'discord' => [ + 'webhook_url' => '', + + /* + * If this is an empty string, the name field on the webhook will be used. + */ + 'username' => '', + + /* + * If this is an empty string, the avatar on the webhook will be used. + */ + 'avatar_url' => '', + ], ], /* diff --git a/config/version.php b/config/version.php index 51de74d0b..f08cbd9ee 100644 --- a/config/version.php +++ b/config/version.php @@ -1,10 +1,10 @@ 'v7.0.3', - 'full_app_version' => 'v7.0.3 - build 13980-', - 'build_version' => '13980', + 'app_version' => 'v7.0.5', + 'full_app_version' => 'v7.0.5 - build 14092-g294fb1f77', + 'build_version' => '14092', 'prerelease_version' => '', - 'hash_version' => '', - 'full_hash' => 'v7.0.3', + 'hash_version' => 'g294fb1f77', + 'full_hash' => 'v7.0.5-77-g294fb1f77', 'branch' => 'develop', ); \ No newline at end of file diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php index cb1ccd89b..5c885666d 100644 --- a/database/factories/UserFactory.php +++ b/database/factories/UserFactory.php @@ -38,6 +38,16 @@ class UserFactory extends Factory ]; } + public function deletedUser() + { + return $this->state(function () { + return [ + 'deleted_at' => $this->faker->dateTime(), + ]; + }); + } + + public function firstAdmin() { return $this->state(function () { diff --git a/database/migrations/2024_06_24_130348_add_profile_edit_to_settings.php b/database/migrations/2024_06_24_130348_add_profile_edit_to_settings.php new file mode 100644 index 000000000..ee0010e84 --- /dev/null +++ b/database/migrations/2024_06_24_130348_add_profile_edit_to_settings.php @@ -0,0 +1,30 @@ +boolean('profile_edit')->nullable()->default(1); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('settings', function (Blueprint $table) { + if (Schema::hasColumn('settings', 'profile_edit')) { + $table->dropColumn('profile_edit'); + } + }); + } +}; diff --git a/public/css/dist/all.css b/public/css/dist/all.css index 48cf0fefe..2ae4d0a80 100644 --- a/public/css/dist/all.css +++ b/public/css/dist/all.css @@ -21124,7 +21124,7 @@ hr { /*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImVra28tbGlnaHRib3guY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGVBQ0UsOEJBQXlCLEFBQXpCLHVCQUF5QixBQUN6QixzQkFBb0IsQUFBcEIsbUJBQW9CLEFBQ3BCLHFCQUF3QixBQUF4Qix1QkFBd0IsQUFDeEIseUJBQTZCLENBQzlCLEFBQ0QseUJBQ0UsaUJBQW1CLENBQ3BCLEFBQ0QsZ0RBQ0Usa0JBQW1CLEFBQ25CLE1BQU8sQUFDUCxPQUFRLEFBQ1IsU0FBVSxBQUNWLFFBQVMsQUFDVCxVQUFZLENBQ2IsQUFDRCxzQkFDRSxXQUFZLEFBQ1osV0FBYSxDQUNkLEFBQ0QsMkJBQ0UsVUFBYSxBQUNiLGtCQUFtQixBQUNuQixNQUFPLEFBQ1AsT0FBUSxBQUNSLFdBQVksQUFDWixZQUFhLEFBQ2Isb0JBQWMsQUFBZCxZQUFjLENBQ2YsQUFDRCw2QkFDRSxXQUFRLEFBQVIsT0FBUSxBQUNSLG9CQUFjLEFBQWQsYUFBYyxBQUNkLHNCQUFvQixBQUFwQixtQkFBb0IsQUFDcEIsVUFBVyxBQUNYLHVCQUF5QixBQUN6QixXQUFZLEFBQ1osZUFBZ0IsQUFDaEIsU0FBYSxDQUNkLEFBQ0QsK0JBQ0Usb0JBQWEsQUFBYixXQUFhLENBQ2QsQUFDRCxvQ0FDRSxZQUFjLENBQ2YsQUFDRCxrQ0FDRSxjQUFnQixDQUNqQixBQUNELDZDQUNFLGdCQUFrQixDQUNuQixBQUNELG1DQUNFLG9CQUFzQixDQUN2QixBQUNELG1DQUNFLFlBQWMsQ0FDZixBQUNELHNDQUNFLGVBQWdCLEFBQ2hCLGlCQUFtQixDQUNwQixBQUNELHVCQUNFLFVBQVcsQUFDWCxvQkFBc0IsQ0FDdkIsQUFDRCw2QkFDRSxZQUFjLENBQ2YsQUFDRCw2QkFDRSxlQUFpQixDQUNsQixBQUNELHNCQUNFLGtCQUFtQixBQUNuQixNQUFPLEFBQ1AsT0FBUSxBQUNSLFNBQVUsQUFDVixRQUFTLEFBQ1QsV0FBWSxBQUNaLG9CQUFjLEFBQWQsYUFBYyxBQUVkLDBCQUF1QixBQUF2QixzQkFBdUIsQUFFdkIscUJBQXdCLEFBQXhCLHVCQUF3QixBQUV4QixzQkFBb0IsQUFBcEIsa0JBQW9CLENBQ3JCLEFBQ0QsMEJBQ0UsV0FBWSxBQUNaLFlBQWEsQUFDYixrQkFBbUIsQUFDbkIsaUJBQW1CLENBQ3BCLEFBQ0QsOEJBQ0UsV0FBWSxBQUNaLFlBQWEsQUFDYixrQkFBbUIsQUFDbkIsc0JBQXVCLEFBQ3ZCLFdBQWEsQUFDYixrQkFBbUIsQUFDbkIsTUFBTyxBQUNQLE9BQVEsQUFDUixtQ0FBNkMsQ0FDOUMsQUFDRCx5Q0FDRSxtQkFBcUIsQ0FDdEIsQUFDRCw0Q0FDRSxxQkFBdUIsQ0FDeEIsQUFVRCxhQUNFLE1BRUUsbUJBQW9CLEFBQ3BCLDBCQUE0QixDQUM3QixBQUNELElBQ0UsbUJBQW9CLEFBQ3BCLDBCQUE0QixDQUM3QixDQUNGIiwiZmlsZSI6ImVra28tbGlnaHRib3guY3NzIiwic291cmNlc0NvbnRlbnQiOlsiLmVra28tbGlnaHRib3gge1xuICBkaXNwbGF5OiBmbGV4ICFpbXBvcnRhbnQ7XG4gIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICBwYWRkaW5nLXJpZ2h0OiAwcHghaW1wb3J0YW50O1xufVxuLmVra28tbGlnaHRib3gtY29udGFpbmVyIHtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xufVxuLmVra28tbGlnaHRib3gtY29udGFpbmVyID4gZGl2LmVra28tbGlnaHRib3gtaXRlbSB7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgdG9wOiAwO1xuICBsZWZ0OiAwO1xuICBib3R0b206IDA7XG4gIHJpZ2h0OiAwO1xuICB3aWR0aDogMTAwJTtcbn1cbi5la2tvLWxpZ2h0Ym94IGlmcmFtZSB7XG4gIHdpZHRoOiAxMDAlO1xuICBoZWlnaHQ6IDEwMCU7XG59XG4uZWtrby1saWdodGJveC1uYXYtb3ZlcmxheSB7XG4gIHotaW5kZXg6IDEwMDtcbiAgcG9zaXRpb246IGFic29sdXRlO1xuICB0b3A6IDA7XG4gIGxlZnQ6IDA7XG4gIHdpZHRoOiAxMDAlO1xuICBoZWlnaHQ6IDEwMCU7XG4gIGRpc3BsYXk6IGZsZXg7XG59XG4uZWtrby1saWdodGJveC1uYXYtb3ZlcmxheSBhIHtcbiAgZmxleDogMTtcbiAgZGlzcGxheTogZmxleDtcbiAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgb3BhY2l0eTogMDtcbiAgdHJhbnNpdGlvbjogb3BhY2l0eSAwLjVzO1xuICBjb2xvcjogI2ZmZjtcbiAgZm9udC1zaXplOiAzMHB4O1xuICB6LWluZGV4OiAxMDA7XG59XG4uZWtrby1saWdodGJveC1uYXYtb3ZlcmxheSBhID4gKiB7XG4gIGZsZXgtZ3JvdzogMTtcbn1cbi5la2tvLWxpZ2h0Ym94LW5hdi1vdmVybGF5IGEgPiAqOmZvY3VzIHtcbiAgb3V0bGluZTogbm9uZTtcbn1cbi5la2tvLWxpZ2h0Ym94LW5hdi1vdmVybGF5IGEgc3BhbiB7XG4gIHBhZGRpbmc6IDAgMzBweDtcbn1cbi5la2tvLWxpZ2h0Ym94LW5hdi1vdmVybGF5IGE6bGFzdC1jaGlsZCBzcGFuIHtcbiAgdGV4dC1hbGlnbjogcmlnaHQ7XG59XG4uZWtrby1saWdodGJveC1uYXYtb3ZlcmxheSBhOmhvdmVyIHtcbiAgdGV4dC1kZWNvcmF0aW9uOiBub25lO1xufVxuLmVra28tbGlnaHRib3gtbmF2LW92ZXJsYXkgYTpmb2N1cyB7XG4gIG91dGxpbmU6IG5vbmU7XG59XG4uZWtrby1saWdodGJveC1uYXYtb3ZlcmxheSBhLmRpc2FibGVkIHtcbiAgY3Vyc29yOiBkZWZhdWx0O1xuICB2aXNpYmlsaXR5OiBoaWRkZW47XG59XG4uZWtrby1saWdodGJveCBhOmhvdmVyIHtcbiAgb3BhY2l0eTogMTtcbiAgdGV4dC1kZWNvcmF0aW9uOiBub25lO1xufVxuLmVra28tbGlnaHRib3ggLm1vZGFsLWRpYWxvZyB7XG4gIGRpc3BsYXk6IG5vbmU7XG59XG4uZWtrby1saWdodGJveCAubW9kYWwtZm9vdGVyIHtcbiAgdGV4dC1hbGlnbjogbGVmdDtcbn1cbi5la2tvLWxpZ2h0Ym94LWxvYWRlciB7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgdG9wOiAwO1xuICBsZWZ0OiAwO1xuICBib3R0b206IDA7XG4gIHJpZ2h0OiAwO1xuICB3aWR0aDogMTAwJTtcbiAgZGlzcGxheTogZmxleDtcbiAgLyogZXN0YWJsaXNoIGZsZXggY29udGFpbmVyICovXG4gIGZsZXgtZGlyZWN0aW9uOiBjb2x1bW47XG4gIC8qIG1ha2UgbWFpbiBheGlzIHZlcnRpY2FsICovXG4gIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICAvKiBjZW50ZXIgaXRlbXMgdmVydGljYWxseSwgaW4gdGhpcyBjYXNlICovXG4gIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG59XG4uZWtrby1saWdodGJveC1sb2FkZXIgPiBkaXYge1xuICB3aWR0aDogNDBweDtcbiAgaGVpZ2h0OiA0MHB4O1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gIHRleHQtYWxpZ246IGNlbnRlcjtcbn1cbi5la2tvLWxpZ2h0Ym94LWxvYWRlciA+IGRpdiA+IGRpdiB7XG4gIHdpZHRoOiAxMDAlO1xuICBoZWlnaHQ6IDEwMCU7XG4gIGJvcmRlci1yYWRpdXM6IDUwJTtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2ZmZjtcbiAgb3BhY2l0eTogMC42O1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHRvcDogMDtcbiAgbGVmdDogMDtcbiAgYW5pbWF0aW9uOiBzay1ib3VuY2UgMnMgaW5maW5pdGUgZWFzZS1pbi1vdXQ7XG59XG4uZWtrby1saWdodGJveC1sb2FkZXIgPiBkaXYgPiBkaXY6bGFzdC1jaGlsZCB7XG4gIGFuaW1hdGlvbi1kZWxheTogLTFzO1xufVxuLm1vZGFsLWRpYWxvZyAuZWtrby1saWdodGJveC1sb2FkZXIgPiBkaXYgPiBkaXYge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjMzMzO1xufVxuQC13ZWJraXQta2V5ZnJhbWVzIHNrLWJvdW5jZSB7XG4gIDAlLFxuICAxMDAlIHtcbiAgICAtd2Via2l0LXRyYW5zZm9ybTogc2NhbGUoMCk7XG4gIH1cbiAgNTAlIHtcbiAgICAtd2Via2l0LXRyYW5zZm9ybTogc2NhbGUoMSk7XG4gIH1cbn1cbkBrZXlmcmFtZXMgc2stYm91bmNlIHtcbiAgMCUsXG4gIDEwMCUge1xuICAgIHRyYW5zZm9ybTogc2NhbGUoMCk7XG4gICAgLXdlYmtpdC10cmFuc2Zvcm06IHNjYWxlKDApO1xuICB9XG4gIDUwJSB7XG4gICAgdHJhbnNmb3JtOiBzY2FsZSgxKTtcbiAgICAtd2Via2l0LXRyYW5zZm9ybTogc2NhbGUoMSk7XG4gIH1cbn1cbiJdfQ== */ /** * @author zhixin wen - * version: 1.22.5 + * version: 1.22.6 * https://github.com/wenzhixin/bootstrap-table/ */ /* stylelint-disable annotation-no-unknown, max-line-length */ diff --git a/public/css/dist/bootstrap-table.css b/public/css/dist/bootstrap-table.css index eb5b8c0b1..d315610f3 100644 --- a/public/css/dist/bootstrap-table.css +++ b/public/css/dist/bootstrap-table.css @@ -1,6 +1,6 @@ /** * @author zhixin wen - * version: 1.22.5 + * version: 1.22.6 * https://github.com/wenzhixin/bootstrap-table/ */ /* stylelint-disable annotation-no-unknown, max-line-length */ diff --git a/public/js/dist/bootstrap-table.js b/public/js/dist/bootstrap-table.js index 5b74860cb..a480fce86 100644 --- a/public/js/dist/bootstrap-table.js +++ b/public/js/dist/bootstrap-table.js @@ -5285,7 +5285,7 @@ } }; - var VERSION = '1.22.5'; + var VERSION = '1.22.6'; var bootstrapVersion = Utils.getBootstrapVersion(); var CONSTANTS = { 3: { @@ -16840,7 +16840,7 @@ if (!this.options.cookie) { return; } - UtilsCookie.setCookie(this, UtilsCookie.cookieIds.pageList, this.options.pageSize); + UtilsCookie.setCookie(this, UtilsCookie.cookieIds.pageList, this.options.pageSize === this.options.formatAllRows() ? 'all' : this.options.pageSize); UtilsCookie.setCookie(this, UtilsCookie.cookieIds.pageNumber, this.options.pageNumber); } }, { @@ -17013,7 +17013,7 @@ // pageNumber this.options.pageNumber = pageNumberCookie ? +pageNumberCookie : this.options.pageNumber; // pageSize - this.options.pageSize = pageListCookie ? pageListCookie === this.options.formatAllRows() ? pageListCookie : +pageListCookie : this.options.pageSize; + this.options.pageSize = pageListCookie ? pageListCookie === 'all' ? this.options.formatAllRows() : +pageListCookie : this.options.pageSize; // searchText if (UtilsCookie.isCookieEnabled(this, UtilsCookie.cookieIds.searchText) && this.options.searchText === '') { this.options.searchText = searchTextCookie ? searchTextCookie : ''; @@ -27350,7 +27350,7 @@ if(xr(e,"index.xml"))throw new Error("Unsupported NUMBERS 09 file");throw new Er }, classes: {}, html: { - modal: "\n
\n
\n
\n
\n \n

%s

\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n " + modal: "\n
\n
\n
\n
\n \n

\n
\n
\n \n
\n
\n
\n " } }, bootstrap4: { @@ -27359,7 +27359,7 @@ if(xr(e,"index.xml"))throw new Error("Unsupported NUMBERS 09 file");throw new Er }, classes: {}, html: { - modal: "\n
\n
\n
\n
\n

%s

\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n " + modal: "\n
\n
\n
\n
\n

\n \n
\n
\n \n
\n
\n
\n " } }, bootstrap5: { @@ -27370,7 +27370,7 @@ if(xr(e,"index.xml"))throw new Error("Unsupported NUMBERS 09 file");throw new Er formGroup: 'mb-3' }, html: { - modal: "\n
\n
\n
\n
\n
%s
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n " + modal: "\n
\n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n " } }, bulma: { @@ -27379,7 +27379,7 @@ if(xr(e,"index.xml"))throw new Error("Unsupported NUMBERS 09 file");throw new Er }, classes: {}, html: { - modal: "\n
\n
\n
\n
\n

%s

\n \n
\n
\n
\n \n
\n
\n
\n " + modal: "\n
\n
\n
\n
\n

\n \n
\n
\n
\n \n
\n
\n
\n " } }, foundation: { @@ -27388,7 +27388,7 @@ if(xr(e,"index.xml"))throw new Error("Unsupported NUMBERS 09 file");throw new Er }, classes: {}, html: { - modal: "\n
\n

%s

\n
\n\n
\n \n\n \n
\n " + modal: "\n
\n

\n
\n \n
\n \n
\n
\n " } }, materialize: { @@ -27397,7 +27397,7 @@ if(xr(e,"index.xml"))throw new Error("Unsupported NUMBERS 09 file");throw new Er }, classes: {}, html: { - modal: "\n
\n
\n

%s

\n
\n\n
\n
\n
\n %s\n
\n
\n " + modal: "\n
\n
\n

\n
\n
\n \n
\n " } }, semantic: { @@ -27406,7 +27406,7 @@ if(xr(e,"index.xml"))throw new Error("Unsupported NUMBERS 09 file");throw new Er }, classes: {}, html: { - modal: "\n
\n \n
\n %s\n
\n
\n
\n
%s
\n
\n
\n " + modal: "\n
\n \n
\n
\n
\n
\n
\n
\n " } } }[$$b.fn.bootstrapTable.theme]; @@ -27444,101 +27444,91 @@ if(xr(e,"index.xml"))throw new Error("Unsupported NUMBERS 09 file");throw new Er return _createClass(_class, [{ key: "initToolbar", value: function initToolbar() { - var o = this.options; - this.showToolbar = this.showToolbar || o.search && o.advancedSearch && o.idTable; - if (o.search && o.advancedSearch && o.idTable) { + this.showToolbar = this.showToolbar || this.options.search && this.options.advancedSearch && this.options.idTable; + if (this.showToolbar) { this.buttons = Object.assign(this.buttons, { advancedSearch: { text: this.options.formatAdvancedSearch(), icon: this.options.icons.advancedSearchIcon, - event: this.showAvdSearch, + event: this.showAdvancedSearch, attributes: { 'aria-label': this.options.formatAdvancedSearch(), title: this.options.formatAdvancedSearch() } } }); + if (Utils.isEmptyObject(this.filterColumnsPartial)) { + this.filterColumnsPartial = {}; + } } _get(_getPrototypeOf(_class.prototype), "initToolbar", this).call(this); } }, { - key: "showAvdSearch", - value: function showAvdSearch() { + key: "showAdvancedSearch", + value: function showAdvancedSearch() { var _this = this; - var o = this.options; - var modalSelector = "#avdSearchModal_".concat(o.idTable); - if ($$b(modalSelector).length <= 0) { - $$b('body').append(Utils.sprintf(theme.html.modal, o.idTable, o.formatAdvancedSearch(), o.idTable, o.idTable, o.buttonsClass, o.formatAdvancedCloseButton())); - var timeoutId = 0; - $$b("#avdSearchModalContent_".concat(o.idTable)).append(this.createFormAvd().join('')); - $$b("#".concat(o.idForm)).off('keyup blur', 'input').on('keyup blur', 'input', function (e) { - if (o.sidePagination === 'server') { - _this.onColumnAdvancedSearch(e); - } else { - clearTimeout(timeoutId); - timeoutId = setTimeout(function () { - _this.onColumnAdvancedSearch(e); - }, o.searchTimeOut); - } + this.$toolbarModal = $$b("#avdSearchModal_".concat(this.options.idTable)); + if (this.$toolbarModal.length <= 0) { + $$b('body').append(Utils.sprintf(theme.html.modal, this.options.idTable, this.options.buttonsClass)); + this.$toolbarModal = $$b("#avdSearchModal_".concat(this.options.idTable)); + this.$toolbarModal.find('.toolbar-modal-close').off('click').on('click', function () { + return _this.hideToolbarModal(); }); - $$b("#btnCloseAvd_".concat(o.idTable)).click(function () { - return _this.hideModal(); - }); - if ($$b.fn.bootstrapTable.theme === 'bulma') { - $$b(modalSelector).find('.delete').off('click').on('click', function () { - return _this.hideModal(); - }); - } - this.showModal(); - } else { - this.showModal(); } + this.initToolbarModalBody(); + this.showToolbarModal(); } }, { - key: "showModal", - value: function showModal() { - var modalSelector = "#avdSearchModal_".concat(this.options.idTable); - if ($$b.inArray($$b.fn.bootstrapTable.theme, ['bootstrap3', 'bootstrap4']) !== -1) { - $$b(modalSelector).modal(); - } else if ($$b.fn.bootstrapTable.theme === 'bootstrap5') { + key: "initToolbarModalBody", + value: function initToolbarModalBody() { + var _this2 = this; + this.$toolbarModal.find('.toolbar-modal-title').html(this.options.formatAdvancedSearch()); + this.$toolbarModal.find('.toolbar-modal-footer .toolbar-modal-close').html(this.options.formatAdvancedCloseButton()); + this.$toolbarModal.find('.toolbar-modal-body').html(this.createToolbarForm()).off('keyup blur', 'input').on('keyup blur', 'input', function (e) { + _this2.onColumnAdvancedSearch(e); + }); + } + }, { + key: "showToolbarModal", + value: function showToolbarModal() { + var theme = $$b.fn.bootstrapTable.theme; + if (['bootstrap3', 'bootstrap4'].includes(theme)) { + this.$toolbarModal.modal(); + } else if (theme === 'bootstrap5') { if (!this.toolbarModal) { - // eslint-disable-next-line no-undef - this.toolbarModal = new bootstrap.Modal(document.getElementById("avdSearchModal_".concat(this.options.idTable)), {}); + this.toolbarModal = new window.bootstrap.Modal(this.$toolbarModal[0], {}); } this.toolbarModal.show(); - } else if ($$b.fn.bootstrapTable.theme === 'bulma') { - $$b(modalSelector).toggleClass('is-active'); - } else if ($$b.fn.bootstrapTable.theme === 'foundation') { + } else if (theme === 'bulma') { + this.$toolbarModal.toggleClass('is-active'); + } else if (theme === 'foundation') { if (!this.toolbarModal) { - // eslint-disable-next-line no-undef - this.toolbarModal = new Foundation.Reveal($$b(modalSelector)); + this.toolbarModal = new window.Foundation.Reveal(this.$toolbarModal); } this.toolbarModal.open(); - } else if ($$b.fn.bootstrapTable.theme === 'materialize') { - $$b(modalSelector).modal(); - $$b(modalSelector).modal('open'); - } else if ($$b.fn.bootstrapTable.theme === 'semantic') { - $$b(modalSelector).modal('show'); + } else if (theme === 'materialize') { + this.$toolbarModal.modal().modal('open'); + } else if (theme === 'semantic') { + this.$toolbarModal.modal('show'); } } }, { - key: "hideModal", - value: function hideModal() { - var $closeModalButton = $$b("#avdSearchModal_".concat(this.options.idTable)); - var modalSelector = "#avdSearchModal_".concat(this.options.idTable); - if ($$b.inArray($$b.fn.bootstrapTable.theme, ['bootstrap3', 'bootstrap4']) !== -1) { - $closeModalButton.modal('hide'); - } else if ($$b.fn.bootstrapTable.theme === 'bootstrap5') { + key: "hideToolbarModal", + value: function hideToolbarModal() { + var theme = $$b.fn.bootstrapTable.theme; + if (['bootstrap3', 'bootstrap4'].includes(theme)) { + this.$toolbarModal.modal('hide'); + } else if (theme === 'bootstrap5') { this.toolbarModal.hide(); - } else if ($$b.fn.bootstrapTable.theme === 'bulma') { + } else if (theme === 'bulma') { $$b('html').toggleClass('is-clipped'); - $$b(modalSelector).toggleClass('is-active'); - } else if ($$b.fn.bootstrapTable.theme === 'foundation') { + this.$toolbarModal.toggleClass('is-active'); + } else if (theme === 'foundation') { this.toolbarModal.close(); - } else if ($$b.fn.bootstrapTable.theme === 'materialize') { - $$b(modalSelector).modal('open'); - } else if ($$b.fn.bootstrapTable.theme === 'semantic') { - $$b(modalSelector).modal('close'); + } else if (theme === 'materialize') { + this.$toolbarModal.modal('open'); + } else if (theme === 'semantic') { + this.$toolbarModal.modal('close'); } if (this.options.sidePagination === 'server') { this.options.pageNumber = 1; @@ -27547,17 +27537,18 @@ if(xr(e,"index.xml"))throw new Error("Unsupported NUMBERS 09 file");throw new Er } } }, { - key: "createFormAvd", - value: function createFormAvd() { - var o = this.options; - var html = ["
")]; + key: "createToolbarForm", + value: function createToolbarForm() { + var html = ["")]; var _iterator = _createForOfIteratorHelper(this.columns), _step; try { for (_iterator.s(); !(_step = _iterator.n()).done;) { var column = _step.value; if (!column.checkbox && column.visible && column.searchable) { - html.push("\n
\n \n
\n \n
\n
\n ")); + var title = $$b('
').html(column.title).text().trim(); + var value = this.filterColumnsPartial[column.field] || ''; + html.push("\n
\n \n
\n \n
\n
\n ")); } } } catch (err) { @@ -27566,17 +27557,17 @@ if(xr(e,"index.xml"))throw new Error("Unsupported NUMBERS 09 file");throw new Er _iterator.f(); } html.push(''); - return html; + return html.join(''); } }, { key: "initSearch", value: function initSearch() { - var _this2 = this; + var _this3 = this; _get(_getPrototypeOf(_class.prototype), "initSearch", this).call(this); if (!this.options.advancedSearch || this.options.sidePagination === 'server') { return; } - var fp = $$b.isEmptyObject(this.filterColumnsPartial) ? null : this.filterColumnsPartial; + var fp = Utils.isEmptyObject(this.filterColumnsPartial) ? null : this.filterColumnsPartial; this.data = fp ? this.data.filter(function (item, i) { for (var _i = 0, _Object$entries = Object.entries(fp); _i < _Object$entries.length; _i++) { var _Object$entries$_i = _slicedToArray(_Object$entries[_i], 2), @@ -27584,8 +27575,8 @@ if(xr(e,"index.xml"))throw new Error("Unsupported NUMBERS 09 file");throw new Er v = _Object$entries$_i[1]; var val = v.toLowerCase(); var value = item[key]; - var index = _this2.header.fields.indexOf(key); - value = Utils.calculateObjectValue(_this2.header, _this2.header.formatters[index], [value, item, i], value); + var index = _this3.header.fields.indexOf(key); + value = Utils.calculateObjectValue(_this3.header, _this3.header.formatters[index], [value, item, i], value); if (!(index !== -1 && (typeof value === 'string' || typeof value === 'number') && "".concat(value).toLowerCase().includes(val))) { return false; } @@ -27598,20 +27589,17 @@ if(xr(e,"index.xml"))throw new Error("Unsupported NUMBERS 09 file");throw new Er key: "onColumnAdvancedSearch", value: function onColumnAdvancedSearch(e) { var text = $$b(e.currentTarget).val().trim(); - var $field = $$b(e.currentTarget)[0].id; - if ($$b.isEmptyObject(this.filterColumnsPartial)) { - this.filterColumnsPartial = {}; - } + var field = $$b(e.currentTarget).attr('name'); if (text) { - this.filterColumnsPartial[$field] = text; + this.filterColumnsPartial[field] = text; } else { - delete this.filterColumnsPartial[$field]; + delete this.filterColumnsPartial[field]; } if (this.options.sidePagination !== 'server') { this.options.pageNumber = 1; this.initSearch(); this.updatePagination(); - this.trigger('column-advanced-search', $field, text); + this.trigger('column-advanced-search', field, text); } } }]); diff --git a/public/mix-manifest.json b/public/mix-manifest.json index 13e5f5324..7d085a434 100644 --- a/public/mix-manifest.json +++ b/public/mix-manifest.json @@ -18,7 +18,7 @@ "/css/dist/skins/skin-green-dark.css": "/css/dist/skins/skin-green-dark.css?id=ec0a01609bec55e90f0692d86cb81625", "/css/dist/skins/skin-green.css": "/css/dist/skins/skin-green.css?id=0a82a6ae6bb4e58fe62d162c4fb50397", "/css/dist/skins/skin-contrast.css": "/css/dist/skins/skin-contrast.css?id=da6c7997d9de2f8329142399f0ce50da", - "/css/dist/all.css": "/css/dist/all.css?id=0f9956c66f93c6417f69f0134c6ae128", + "/css/dist/all.css": "/css/dist/all.css?id=c18576427f178a39b395c950a130233e", "/css/dist/signature-pad.css": "/css/dist/signature-pad.css?id=6a89d3cd901305e66ced1cf5f13147f7", "/css/dist/signature-pad.min.css": "/css/dist/signature-pad.min.css?id=6a89d3cd901305e66ced1cf5f13147f7", "/css/webfonts/fa-brands-400.ttf": "/css/webfonts/fa-brands-400.ttf?id=0141634c24336be626e05c8b77d1fa27", @@ -29,9 +29,9 @@ "/css/webfonts/fa-solid-900.woff2": "/css/webfonts/fa-solid-900.woff2?id=96d16b1bdb177fd796c810b9e706c780", "/css/webfonts/fa-v4compatibility.ttf": "/css/webfonts/fa-v4compatibility.ttf?id=8994b282f9f3b7a00380bb1e2731a4bf", "/css/webfonts/fa-v4compatibility.woff2": "/css/webfonts/fa-v4compatibility.woff2?id=111e341dba724e1df946e8d1f406a7bd", - "/css/dist/bootstrap-table.css": "/css/dist/bootstrap-table.css?id=5f79123a6750afd34dbf565faec3dda3", + "/css/dist/bootstrap-table.css": "/css/dist/bootstrap-table.css?id=56d8ef58cbae76d63d504ff8d69cf382", "/js/build/vendor.js": "/js/build/vendor.js?id=179bfe20e8767f7df32658c6b5a10ca3", - "/js/dist/bootstrap-table.js": "/js/dist/bootstrap-table.js?id=e5918703a22f8992c4c98f1dbbecb8f7", + "/js/dist/bootstrap-table.js": "/js/dist/bootstrap-table.js?id=1635e7bbab779359c9b97121a8203521", "/js/dist/all.js": "/js/dist/all.js?id=e37ce44903f83119fe3d52717200022e", "/js/dist/all-defer.js": "/js/dist/all-defer.js?id=75d841799f917cbcacf6b87698379726", "/css/dist/skins/skin-green.min.css": "/css/dist/skins/skin-green.min.css?id=0a82a6ae6bb4e58fe62d162c4fb50397", diff --git a/resources/lang/aa-ER/account/general.php b/resources/lang/aa-ER/account/general.php index 0d850233f..1d698e0fb 100644 --- a/resources/lang/aa-ER/account/general.php +++ b/resources/lang/aa-ER/account/general.php @@ -2,10 +2,10 @@ return array( 'personal_api_keys' => 'crwdns6798:0crwdne6798:0', - 'api_key_warning' => 'crwdns6800:0crwdne6800:0', + 'api_key_warning' => 'crwdns12268:0crwdne12268:0', 'api_base_url' => 'crwdns6802:0crwdne6802:0', 'api_base_url_endpoint' => 'crwdns6804:0crwdne6804:0', 'api_token_expiration_time' => 'crwdns6806:0crwdne6806:0', - 'api_reference' => 'crwdns6808:0crwdne6808:0', + 'api_reference' => 'crwdns12270:0crwdne12270:0', 'profile_updated' => 'crwdns12202:0crwdne12202:0', ); diff --git a/resources/lang/aa-ER/admin/locations/message.php b/resources/lang/aa-ER/admin/locations/message.php index b665208da..588a0d4d8 100644 --- a/resources/lang/aa-ER/admin/locations/message.php +++ b/resources/lang/aa-ER/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'crwdns650:0crwdne650:0', - 'assoc_users' => 'crwdns651:0crwdne651:0', + 'assoc_users' => 'crwdns12272:0crwdne12272:0', 'assoc_assets' => 'crwdns1404:0crwdne1404:0', 'assoc_child_loc' => 'crwdns1405:0crwdne1405:0', 'assigned_assets' => 'crwdns11179:0crwdne11179:0', diff --git a/resources/lang/aa-ER/admin/settings/general.php b/resources/lang/aa-ER/admin/settings/general.php index 544dcfab8..de2d54f54 100644 --- a/resources/lang/aa-ER/admin/settings/general.php +++ b/resources/lang/aa-ER/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'crwdns1678:0crwdne1678:0', 'username_format_help' => 'crwdns5918:0crwdne5918:0', 'oauth_title' => 'crwdns6403:0crwdne6403:0', + 'oauth_clients' => 'crwdns12246:0crwdne12246:0', 'oauth' => 'crwdns6405:0crwdne6405:0', 'oauth_help' => 'crwdns6407:0crwdne6407:0', + 'oauth_no_clients' => 'crwdns12248:0crwdne12248:0', + 'oauth_secret' => 'crwdns12250:0crwdne12250:0', + 'oauth_authorized_apps' => 'crwdns12252:0crwdne12252:0', + 'oauth_redirect_url' => 'crwdns12254:0crwdne12254:0', + 'oauth_name_help' => 'crwdns12256:0crwdne12256:0', + 'oauth_scopes' => 'crwdns12258:0crwdne12258:0', + 'oauth_callback_url' => 'crwdns12260:0crwdne12260:0', + 'create_client' => 'crwdns12262:0crwdne12262:0', + 'no_scopes' => 'crwdns12264:0crwdne12264:0', 'asset_tag_title' => 'crwdns6409:0crwdne6409:0', 'barcode_title' => 'crwdns6411:0crwdne6411:0', 'barcodes' => 'crwdns6413:0crwdne6413:0', diff --git a/resources/lang/aa-ER/general.php b/resources/lang/aa-ER/general.php index b7eaf2388..6fa633b99 100644 --- a/resources/lang/aa-ER/general.php +++ b/resources/lang/aa-ER/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'crwdns5952:0crwdne5952:0', 'firstinitial.lastname' => 'crwdns5954:0crwdne5954:0', 'firstnamelastinitial' => 'crwdns5956:0crwdne5956:0', + 'lastnamefirstname' => 'crwdns12266:0crwdne12266:0', 'first_name' => 'crwdns1053:0crwdne1053:0', 'first_name_format' => 'crwdns1647:0crwdne1647:0', 'files' => 'crwdns1996:0crwdne1996:0', diff --git a/resources/lang/af-ZA/account/general.php b/resources/lang/af-ZA/account/general.php index a1cba2bd4..dda17abaa 100644 --- a/resources/lang/af-ZA/account/general.php +++ b/resources/lang/af-ZA/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => '私有API 金鑰', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/af-ZA/admin/locations/message.php b/resources/lang/af-ZA/admin/locations/message.php index 1b2c81d84..dd41bba32 100644 --- a/resources/lang/af-ZA/admin/locations/message.php +++ b/resources/lang/af-ZA/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Ligging bestaan ​​nie.', - 'assoc_users' => 'Hierdie ligging is tans gekoppel aan ten minste een gebruiker en kan nie uitgevee word nie. Dateer asseblief u gebruikers op om nie meer hierdie ligging te verwys nie en probeer weer.', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Hierdie ligging is tans geassosieer met ten minste een bate en kan nie uitgevee word nie. Dateer asseblief jou bates op om nie meer hierdie ligging te verwys nie en probeer weer.', 'assoc_child_loc' => 'Hierdie ligging is tans die ouer van ten minste een kind se plek en kan nie uitgevee word nie. Werk asseblief jou liggings by om nie meer hierdie ligging te verwys nie en probeer weer.', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/af-ZA/admin/settings/general.php b/resources/lang/af-ZA/admin/settings/general.php index 9f4bb456d..81257f96b 100644 --- a/resources/lang/af-ZA/admin/settings/general.php +++ b/resources/lang/af-ZA/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Lengte van bate-etikette, insluitend zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/af-ZA/general.php b/resources/lang/af-ZA/general.php index ad867d849..9ccd240c7 100644 --- a/resources/lang/af-ZA/general.php +++ b/resources/lang/af-ZA/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Eerste naam', 'first_name_format' => 'Voornaam (jane@example.com)', 'files' => 'Files', diff --git a/resources/lang/am-ET/account/general.php b/resources/lang/am-ET/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/am-ET/account/general.php +++ b/resources/lang/am-ET/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/am-ET/admin/locations/message.php b/resources/lang/am-ET/admin/locations/message.php index 22c7fe8f7..8121b8068 100644 --- a/resources/lang/am-ET/admin/locations/message.php +++ b/resources/lang/am-ET/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Location does not exist.', - 'assoc_users' => 'This location is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this location and try again. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ', 'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/am-ET/admin/settings/general.php b/resources/lang/am-ET/admin/settings/general.php index 01adf36eb..727c35a6e 100644 --- a/resources/lang/am-ET/admin/settings/general.php +++ b/resources/lang/am-ET/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Length of asset tags, including zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/am-ET/general.php b/resources/lang/am-ET/general.php index 8c888c178..57aab8fba 100644 --- a/resources/lang/am-ET/general.php +++ b/resources/lang/am-ET/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'First Name', 'first_name_format' => 'First Name (jane@example.com)', 'files' => 'Files', diff --git a/resources/lang/ar-SA/account/general.php b/resources/lang/ar-SA/account/general.php index 4873d33f1..0be269548 100644 --- a/resources/lang/ar-SA/account/general.php +++ b/resources/lang/ar-SA/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'مفاتيح API الشخصية', - 'api_key_warning' => 'عند إنشاء رمز API، تأكد من نسخه على الفور لأنه - لن يكون مرئيا لك مرة أخرى.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'عنوان URL الأساسي API الخاص بك موجود في:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'تم تعيين رموز API لانتهاء صلاحيتها في:', - 'api_reference' => 'الرجاء التحقق من مرجع API إلى - العثور على نقاط نهاية API المحددة ووثائق API الإضافية.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/ar-SA/admin/locations/message.php b/resources/lang/ar-SA/admin/locations/message.php index 547b5db18..fa5001662 100644 --- a/resources/lang/ar-SA/admin/locations/message.php +++ b/resources/lang/ar-SA/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'الموقع غير موجود.', - 'assoc_users' => 'هذا الموقع مرتبط حاليا بمستخدم واحد على الأقل ولا يمكن حذفه. يرجى تحديث المستخدمين لم يعد يشيروا إلى هذا الموقع ثم أعد المحاولة. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'هذا الموقع مرتبط حاليا بمادة عرض واحدة على الأقل ولا يمكن حذفها. يرجى تحديث مواد العرض لم تعد تشير إلى هذا الموقع ثم أعد المحاولة. ', 'assoc_child_loc' => 'هذا الموقع هو حاليا أحد الوالدين لموقع طفل واحد على الأقل ولا يمكن حذفه. يرجى تحديث مواقعك لم تعد تشير إلى هذا الموقع ثم أعد المحاولة.', 'assigned_assets' => 'الأصول المعينة', diff --git a/resources/lang/ar-SA/admin/settings/general.php b/resources/lang/ar-SA/admin/settings/general.php index 5e908eed9..f326c33d6 100644 --- a/resources/lang/ar-SA/admin/settings/general.php +++ b/resources/lang/ar-SA/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'طول ترميز الأصل، بما في ذلك تعبئة الاصفار', 'username_format_help' => 'سيتم استخدام هذا الإعداد فقط من قبل عملية الاستيراد إذا لم يتم توفير اسم المستخدم ويتعين علينا إنشاء اسم مستخدم لك.', 'oauth_title' => 'إعدادات API OAuth', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'إعدادات نقطة النهاية Oauth', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'تحديث إعدادات علامة الأصل', 'barcode_title' => 'تحديث إعدادات الباركود', 'barcodes' => 'Barcodes', diff --git a/resources/lang/ar-SA/general.php b/resources/lang/ar-SA/general.php index 4abaab552..897adcab0 100644 --- a/resources/lang/ar-SA/general.php +++ b/resources/lang/ar-SA/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'اللقب والحرف الاول من الاسم (smithj@example.com)', 'firstinitial.lastname' => 'الاسم الأخير الأول (jsmith@example.com)', 'firstnamelastinitial' => 'اللقب والحرف الاول من الاسم (smithj@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'الإسم الأول', 'first_name_format' => 'الاسم الأول (jane@example.com)', 'files' => 'الملفات', @@ -245,7 +246,7 @@ return [ 'requested_assets_menu' => 'الأصول المطلوبة', 'request_canceled' => 'تم إلغاء الطلب', 'request_item' => 'Request this item', - 'external_link_tooltip' => 'External link to', + 'external_link_tooltip' => 'رابط خارجي إلى', 'save' => 'حفظ', 'select_var' => 'اختر :thing... ', // this will eventually replace all of our other selects 'select' => 'تحديد', diff --git a/resources/lang/bg-BG/account/general.php b/resources/lang/bg-BG/account/general.php index 4c7fa4888..53a63ec32 100644 --- a/resources/lang/bg-BG/account/general.php +++ b/resources/lang/bg-BG/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Частни API ключове', - 'api_key_warning' => 'Когато се генерират API token, копирайте ги веднага защото - няма да бъдат видими в последствие.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Вашият API основен URL се намира на:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API ключа ще изтиче на:', - 'api_reference' => 'Прочетете API reference за да - намерите специфични API endpoints и допълнителна API документация.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/bg-BG/admin/locations/message.php b/resources/lang/bg-BG/admin/locations/message.php index e6c7f9ec8..f6a9c1f25 100644 --- a/resources/lang/bg-BG/admin/locations/message.php +++ b/resources/lang/bg-BG/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Местоположението не съществува.', - 'assoc_users' => 'Местоположението е свързано с поне един потребител и не може да бъде изтрито. Моля, актуализирайте потребителите, така че да не са свързани с това местоположение и опитайте отново. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Местоположението е свързано с поне един актив и не може да бъде изтрито. Моля, актуализирайте активите, така че да не са свързани с това местоположение и опитайте отново. ', 'assoc_child_loc' => 'В избраното местоположение е присъединено едно или повече местоположения. Моля преместете ги в друго и опитайте отново.', 'assigned_assets' => 'Изписани Активи', diff --git a/resources/lang/bg-BG/admin/settings/general.php b/resources/lang/bg-BG/admin/settings/general.php index 13156cfe8..e2e5d9cd2 100644 --- a/resources/lang/bg-BG/admin/settings/general.php +++ b/resources/lang/bg-BG/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Дължина на етикети на актив, включително zerofill', 'username_format_help' => 'Тази настройка се изпозлва само при импортиране, ако потребителя не е въведен и ние трябва да му генерираме потребителско име.', 'oauth_title' => 'OAuth API Настройки', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint настройки', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Обнови настроките на етикета на актива', 'barcode_title' => 'Обнови настройките на баркод', 'barcodes' => 'Баркоди', diff --git a/resources/lang/bg-BG/general.php b/resources/lang/bg-BG/general.php index 800925193..237a4814b 100644 --- a/resources/lang/bg-BG/general.php +++ b/resources/lang/bg-BG/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Фамилия и Първа буква от име (ivanov_i@example.com)', 'firstinitial.lastname' => 'Първа буква от името и Фамилия (i.ivanov@example.com)', 'firstnamelastinitial' => 'Име и първа буква от фамилия (ivani@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Собствено име', 'first_name_format' => 'Име (jane@example.com)', 'files' => 'Файлове', diff --git a/resources/lang/ca-ES/account/general.php b/resources/lang/ca-ES/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/ca-ES/account/general.php +++ b/resources/lang/ca-ES/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/ca-ES/admin/locations/message.php b/resources/lang/ca-ES/admin/locations/message.php index 22c7fe8f7..8121b8068 100644 --- a/resources/lang/ca-ES/admin/locations/message.php +++ b/resources/lang/ca-ES/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Location does not exist.', - 'assoc_users' => 'This location is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this location and try again. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ', 'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/ca-ES/admin/settings/general.php b/resources/lang/ca-ES/admin/settings/general.php index 01adf36eb..727c35a6e 100644 --- a/resources/lang/ca-ES/admin/settings/general.php +++ b/resources/lang/ca-ES/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Length of asset tags, including zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/ca-ES/general.php b/resources/lang/ca-ES/general.php index 6137f2118..63e2af7d3 100644 --- a/resources/lang/ca-ES/general.php +++ b/resources/lang/ca-ES/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'First Name', 'first_name_format' => 'First Name (jane@example.com)', 'files' => 'Files', diff --git a/resources/lang/chr-US/account/general.php b/resources/lang/chr-US/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/chr-US/account/general.php +++ b/resources/lang/chr-US/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/chr-US/admin/locations/message.php b/resources/lang/chr-US/admin/locations/message.php index 22c7fe8f7..8121b8068 100644 --- a/resources/lang/chr-US/admin/locations/message.php +++ b/resources/lang/chr-US/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Location does not exist.', - 'assoc_users' => 'This location is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this location and try again. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ', 'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/chr-US/admin/settings/general.php b/resources/lang/chr-US/admin/settings/general.php index 01adf36eb..727c35a6e 100644 --- a/resources/lang/chr-US/admin/settings/general.php +++ b/resources/lang/chr-US/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Length of asset tags, including zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/chr-US/general.php b/resources/lang/chr-US/general.php index ec0b8e6ee..7777302a6 100644 --- a/resources/lang/chr-US/general.php +++ b/resources/lang/chr-US/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'First Name', 'first_name_format' => 'First Name (jane@example.com)', 'files' => 'Files', diff --git a/resources/lang/cs-CZ/account/general.php b/resources/lang/cs-CZ/account/general.php index 560b169df..6099bc7bd 100644 --- a/resources/lang/cs-CZ/account/general.php +++ b/resources/lang/cs-CZ/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Osobní API klíče', - 'api_key_warning' => 'Při generování tokenu API se ujistěte, že jej ihned zkopírujete, protože - nebudou viditelné.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Základní adresa API je umístěna na:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokeny vyprší:', - 'api_reference' => 'Zkontrolujte prosím API reference pro - nalezení konkrétního koncového bodu a další API dokumentaci.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/cs-CZ/admin/locations/message.php b/resources/lang/cs-CZ/admin/locations/message.php index 7286792e8..bbcfcec38 100644 --- a/resources/lang/cs-CZ/admin/locations/message.php +++ b/resources/lang/cs-CZ/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Místo neexistuje.', - 'assoc_users' => 'Toto umístění je spojeno s alespoň jedním uživatelem a nemůže být smazáno. Aktualizujte uživatele aby nenáleželi k tomuto umístění a zkuste to znovu. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Toto umístění je spojeno s alespoň jedním majetkem a nemůže být smazáno. Aktualizujte majetky tak aby nenáleželi k tomuto umístění a zkuste to znovu. ', 'assoc_child_loc' => 'Toto umístění je nadřazené alespoň jednomu umístění a nelze jej smazat. Aktualizujte své umístění tak, aby na toto umístění již neodkazovalo a zkuste to znovu. ', 'assigned_assets' => 'Přiřazený majetek', diff --git a/resources/lang/cs-CZ/admin/settings/general.php b/resources/lang/cs-CZ/admin/settings/general.php index 0e3a66776..dd1dfd90e 100644 --- a/resources/lang/cs-CZ/admin/settings/general.php +++ b/resources/lang/cs-CZ/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Délka značek majetku včetně zerofill', 'username_format_help' => 'Toto nastavení bude použito pouze v případě, že není zadáno uživatelské jméno a my pro vás musíme vygenerovat uživatelské jméno.', 'oauth_title' => 'Nastavení OAuth API', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Nastavení koncových bodů Oauth', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Aktualizovat nastavení inventárních čísel', 'barcode_title' => 'Aktualizovat nastavení čárového kódu', 'barcodes' => 'Čárové kódy', diff --git a/resources/lang/cs-CZ/general.php b/resources/lang/cs-CZ/general.php index 95c63c95c..0b191f854 100644 --- a/resources/lang/cs-CZ/general.php +++ b/resources/lang/cs-CZ/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Příjmení Iniciál (novak_j@example.com)', 'firstinitial.lastname' => 'Iniciál Príjmení (j.novak@example.com)', 'firstnamelastinitial' => 'Jméno Iniciál(josefn@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Jméno', 'first_name_format' => 'Jméno (jane@example.com)', 'files' => 'Soubory', diff --git a/resources/lang/cs-CZ/table.php b/resources/lang/cs-CZ/table.php index f77fb117c..e35158b45 100644 --- a/resources/lang/cs-CZ/table.php +++ b/resources/lang/cs-CZ/table.php @@ -6,6 +6,6 @@ return array( 'action' => 'Akce', 'by' => 'Vytvořil', 'item' => 'Položka', - 'no_matching_records' => 'No matching records found', + 'no_matching_records' => 'Nebyly nalezeny žádné odpovídající záznamy', ); diff --git a/resources/lang/cy-GB/account/general.php b/resources/lang/cy-GB/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/cy-GB/account/general.php +++ b/resources/lang/cy-GB/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/cy-GB/admin/locations/message.php b/resources/lang/cy-GB/admin/locations/message.php index d196473ac..204368aa6 100644 --- a/resources/lang/cy-GB/admin/locations/message.php +++ b/resources/lang/cy-GB/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Nid yw\'r lleoliad yn bodoli.', - 'assoc_users' => 'Mae\'r lleoliad yma wedi perthnasu i oleiaf un defnyddiwr a nid yw\'n bosib dileu. Diweddarwch eich defnyddwyr i beidio cyfeirio at y lleoliad yma ac yna ceisiwch eto. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Mae\'r lleoliad yma wedi perthnasu i oleiaf un ased a nid yw\'n bosib dileu. Diweddarwch eich asedau i beidio cyfeirio at y lleoliad yma ac yna ceisiwch eto. ', 'assoc_child_loc' => 'Mae\'r lleoliad yma yn rhiant i oleiaf un lleoliad a nid yw\'n bosib dileu. Diweddarwch eich lleoliadau i beidio cyfeirio at y lleoliad yma ac yna ceisiwch eto. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/cy-GB/admin/settings/general.php b/resources/lang/cy-GB/admin/settings/general.php index 27afc46f6..857de4bd4 100644 --- a/resources/lang/cy-GB/admin/settings/general.php +++ b/resources/lang/cy-GB/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Hyd y tagiau asedau, gan gynnwys zerofill', 'username_format_help' => 'Dim ond os na ddarperir enw defnyddiwr y bydd y gosodiad hwn yn cael ei ddefnyddio a bod yn rhaid i ni gynhyrchu enw defnyddiwr i chi.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/cy-GB/general.php b/resources/lang/cy-GB/general.php index bee1bd0be..a890b943b 100644 --- a/resources/lang/cy-GB/general.php +++ b/resources/lang/cy-GB/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'Llythyren Cyntaf Enw Cyntaf Cyfenw (jsmith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Enw cyntaf', 'first_name_format' => 'Enw Cyntaf (jane@example.com)', 'files' => 'Ffeiliau', diff --git a/resources/lang/da-DK/account/general.php b/resources/lang/da-DK/account/general.php index 48bbe15fc..3f6690678 100644 --- a/resources/lang/da-DK/account/general.php +++ b/resources/lang/da-DK/account/general.php @@ -2,10 +2,10 @@ return array( 'personal_api_keys' => 'Personlige API-nøgler', - 'api_key_warning' => 'Når du genererer en API-nøgle, skal du sørge for at kopiere det ned med det samme, da de ikke vil være synlige for dig igen.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Din basisadressen til API\'en er:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API-nøgler er indstillet til at udløbe efter:', - 'api_reference' => 'Se venligst i API-manualen for at finde specifikke API-endpoints og yderligere API-dokumentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/da-DK/admin/locations/message.php b/resources/lang/da-DK/admin/locations/message.php index 90b60f205..7c583ee89 100644 --- a/resources/lang/da-DK/admin/locations/message.php +++ b/resources/lang/da-DK/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Beliggenhed findes ikke.', - 'assoc_users' => 'Denne placering er i øjeblikket forbundet med mindst en bruger og kan ikke slettes. Opdater dine brugere for ikke længere at henvise til denne placering, og prøv igen.', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Denne placering er i øjeblikket forbundet med mindst ét ​​aktiv og kan ikke slettes. Opdater dine aktiver for ikke længere at henvise til denne placering, og prøv igen.', 'assoc_child_loc' => 'Denne placering er for øjeblikket forælder på mindst et barns placering og kan ikke slettes. Opdater dine placeringer for ikke længere at henvise til denne placering, og prøv igen.', 'assigned_assets' => 'Tildelte aktiver', diff --git a/resources/lang/da-DK/admin/settings/general.php b/resources/lang/da-DK/admin/settings/general.php index 7cc5f2b4f..a03687c00 100644 --- a/resources/lang/da-DK/admin/settings/general.php +++ b/resources/lang/da-DK/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Længde af aktivetiketter, herunder zerofill', 'username_format_help' => 'Denne indstilling vil kun blive brugt af importprocessen, hvis et brugernavn ikke er angivet, og vi er nødt til at generere et brugernavn til dig.', 'oauth_title' => 'OAuth API Indstillinger', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Indstillinger', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Opdater Aktiv Tag Indstillinger', 'barcode_title' => 'Opdater Stregkode Indstillinger', 'barcodes' => 'Barcodes', diff --git a/resources/lang/da-DK/general.php b/resources/lang/da-DK/general.php index 7dbd6f5f6..b47259732 100644 --- a/resources/lang/da-DK/general.php +++ b/resources/lang/da-DK/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Efternavn første bogstav i fornavn (smith_j@example.com)', 'firstinitial.lastname' => 'Første bogstav i fornavn.efternavn (j.smith@example.com)', 'firstnamelastinitial' => 'Fornavn førstebogstav i efternavn (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Fornavn', 'first_name_format' => 'Fornavn (jane@example.com)', 'files' => 'Filer', diff --git a/resources/lang/de-DE/account/general.php b/resources/lang/de-DE/account/general.php index 7828c401a..d533326d1 100644 --- a/resources/lang/de-DE/account/general.php +++ b/resources/lang/de-DE/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Persönliche API-Schlüssel', - 'api_key_warning' => 'Wenn Sie ein API-Token generieren, stellen Sie sicher, dass Sie diesen sofort kopieren, da er - nicht mehr für Sie sichtbar sein wird.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Ihre API Basis-URL befindet sich unter:', 'api_base_url_endpoint' => '/<Endpunkt>', 'api_token_expiration_time' => 'API-Token sollen ablaufen in:', - 'api_reference' => 'Bitte lesen Sie die API Dokumentation um - Informationen über die verfügbaren API endpoints und ihre Verwendung zu erhalten.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Konto erfolgreich aktualisiert', ); diff --git a/resources/lang/de-DE/admin/locations/message.php b/resources/lang/de-DE/admin/locations/message.php index dc1b589f8..bdcfbfe06 100644 --- a/resources/lang/de-DE/admin/locations/message.php +++ b/resources/lang/de-DE/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Standort nicht verfügbar.', - 'assoc_users' => 'Dieser Standort ist aktuell mindestens einem Benutzer zugewiesen und kann nicht gelöscht werden. Bitte entfernen Sie die Standortzuweisung bei den jeweiligen Benutzern und versuchen Sie es erneut. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Dieser Standort ist aktuell mindestens einem Gegenstand zugewiesen und kann nicht gelöscht werden. Bitte entfernen Sie die Standortzuweisung bei den jeweiligen Gegenständen und versuchen Sie es erneut diesen Standort zu entfernen. ', 'assoc_child_loc' => 'Dieser Ort ist aktuell mindestens einem anderen Ort übergeordnet und kann nicht gelöscht werden. Bitte Orte aktualisieren, so dass dieser Standort nicht mehr verknüpft ist und erneut versuchen. ', 'assigned_assets' => 'Zugeordnete Assets', diff --git a/resources/lang/de-DE/admin/settings/general.php b/resources/lang/de-DE/admin/settings/general.php index d8c9c0f3e..96d4fa319 100644 --- a/resources/lang/de-DE/admin/settings/general.php +++ b/resources/lang/de-DE/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Länge der Asset Tags, inklusive zerofill', 'username_format_help' => 'Diese Einstellung wird nur beim Import benutzt, wenn kein Benutzername angegeben wurde und ein Benutzername generiert werden muss.', 'oauth_title' => 'OAuth API Einstellungen', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'OAuth Endpunkt Einstellungen', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Asset Tag Einstellungen aktualisieren', 'barcode_title' => 'Barcode Einstellungen aktualisieren', 'barcodes' => 'Barcodes', diff --git a/resources/lang/de-DE/general.php b/resources/lang/de-DE/general.php index 8061919ca..4d15cc220 100644 --- a/resources/lang/de-DE/general.php +++ b/resources/lang/de-DE/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Nachname_Initiale des Vornamens (mustermann_e@beispiel.de)', 'firstinitial.lastname' => 'Initiale des Vornamens.Nachname (e.mustermann@beispiel.de)', 'firstnamelastinitial' => 'Vorname und Initiale des Nachnamen (erika_m@beispiel.de)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Vorname', 'first_name_format' => 'Vorname (jane@example.com)', 'files' => 'Dateien', diff --git a/resources/lang/de-if/account/general.php b/resources/lang/de-if/account/general.php index 733b27d1c..1544c4dd2 100644 --- a/resources/lang/de-if/account/general.php +++ b/resources/lang/de-if/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Persönliche API-Schlüssel', - 'api_key_warning' => 'Wenn Du ein API-Token generierst, stelle sicher, dass Du es sofort danach kopierst, da es - nicht mehr für Dich sichtbar sein wird.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Deine API Basis-URL befindet sich unter:', 'api_base_url_endpoint' => '/<Endpunkt>', 'api_token_expiration_time' => 'API-Token sollen ablaufen in:', - 'api_reference' => 'Bitte lese die API Dokumentation um - Informationen über die verfügbaren API endpoints und ihre Verwendung zu erhalten.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Konto erfolgreich aktualisiert', ); diff --git a/resources/lang/de-if/admin/locations/message.php b/resources/lang/de-if/admin/locations/message.php index a768c6499..cba3b0b1a 100644 --- a/resources/lang/de-if/admin/locations/message.php +++ b/resources/lang/de-if/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Standort existiert nicht.', - 'assoc_users' => 'Dieser Standort ist mindestens einem Benutzer zugewiesen und kann nicht gelöscht werden. Bitte entferne die Standortzuweisung bei den jeweiligen Benutzern und versuche erneut, diesen Standort zu entfernen. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Dieser Standort ist mindestens einem Gegenstand zugewiesen und kann nicht gelöscht werden. Bitte entferne die Standortzuweisung bei den jeweiligen Gegenständen und versuche erneut, diesen Standort zu entfernen. ', 'assoc_child_loc' => 'Dieser Standort ist mindestens einem anderen Ort übergeordnet und kann nicht gelöscht werden. Bitte aktualisiere Deine Standorte, so dass dieser Standort nicht mehr verknüpft ist, und versuche es erneut. ', 'assigned_assets' => 'Zugeordnete Assets', diff --git a/resources/lang/de-if/admin/settings/general.php b/resources/lang/de-if/admin/settings/general.php index bd0a552ac..afd9a35ae 100644 --- a/resources/lang/de-if/admin/settings/general.php +++ b/resources/lang/de-if/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Länge der Asset Tags, inklusive führender Nullen', 'username_format_help' => 'Diese Einstellung wird nur beim Import benutzt, wenn kein Benutzername angegeben wurde und wir einen Benutzernamen für Dich generieren müssen.', 'oauth_title' => 'OAuth API Einstellungen', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpunkt Einstellungen', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Asset Tag Einstellungen aktualisieren', 'barcode_title' => 'Barcode Einstellungen aktualisieren', 'barcodes' => 'Barcodes', diff --git a/resources/lang/de-if/general.php b/resources/lang/de-if/general.php index 20d8887f3..68c3cb2b6 100644 --- a/resources/lang/de-if/general.php +++ b/resources/lang/de-if/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Nachname_Initial des Vornamens (mustermann_e@beispiel.de)', 'firstinitial.lastname' => 'Initial des Vornamens.Nachname (e.mustermann@beispiel.de)', 'firstnamelastinitial' => 'Vorname_Initial des Nachnamen (erika_m@beispiel.de)', + 'lastnamefirstname' => 'Nach- und Vorname (mustermann.jana@example.com)', 'first_name' => 'Vorname', 'first_name_format' => 'Vorname (erika@beispiel.de)', 'files' => 'Dateien', diff --git a/resources/lang/el-GR/account/general.php b/resources/lang/el-GR/account/general.php index bc2293791..081eb271c 100644 --- a/resources/lang/el-GR/account/general.php +++ b/resources/lang/el-GR/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Προσωπικά Κλειδιά Api', - 'api_key_warning' => 'Κατά τη δημιουργία ενός διακριτικού API, φροντίστε να το αντιγράψετε αμέσως καθώς - δεν θα είναι ορατό σε σας ξανά.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Η βάση url σας API βρίσκεται στο:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'Τα API tokens έχουν οριστεί να λήγουν:', - 'api_reference' => 'Παρακαλούμε ελέγξτε τον API κωδικό στο - βρείτε συγκεκριμένα endpoints API και πρόσθετη τεκμηρίωση API.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/el-GR/admin/locations/message.php b/resources/lang/el-GR/admin/locations/message.php index faf3b8e62..e1f784000 100644 --- a/resources/lang/el-GR/admin/locations/message.php +++ b/resources/lang/el-GR/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Η τοποθεσία δεν υπάρχει.', - 'assoc_users' => 'Αυτή η θέση είναι επί του παρόντος σχετίζεται με τουλάχιστον ένα χρήστη και δεν μπορεί να διαγραφεί. Παρακαλούμε να ενημερώσετε τους χρήστες σας να μην αναφέρονται σε αυτήν τη θέση και δοκιμάστε ξανά. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Αυτή η τοποθεσία συσχετίζεται προς το παρόν με τουλάχιστον ένα στοιχείο και δεν μπορεί να διαγραφεί. Ενημερώστε τα στοιχεία σας ώστε να μην αναφέρονται πλέον στην τοποθεσία αυτή και να προσπαθήσετε ξανά.', 'assoc_child_loc' => 'Αυτή η τοποθεσία είναι αυτήν τη στιγμή γονέας τουλάχιστον μιας τοποθεσίας παιδιού και δεν μπορεί να διαγραφεί. Ενημερώστε τις τοποθεσίες σας ώστε να μην αναφέρονται πλέον σε αυτήν την τοποθεσία και δοκιμάστε ξανά.', 'assigned_assets' => 'Αντιστοιχισμένα Στοιχεία Ενεργητικού', diff --git a/resources/lang/el-GR/admin/settings/general.php b/resources/lang/el-GR/admin/settings/general.php index 0daae70fb..5b98e3470 100644 --- a/resources/lang/el-GR/admin/settings/general.php +++ b/resources/lang/el-GR/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Μήκος ετικετών ενεργητικού, συμπεριλαμβανομένου του zerofill', 'username_format_help' => 'Αυτή η ρύθμιση θα χρησιμοποιηθεί μόνο από τη διαδικασία εισαγωγής εάν δεν παρέχεται ένα όνομα χρήστη και πρέπει να δημιουργήσουμε ένα όνομα χρήστη για εσάς.', 'oauth_title' => 'Ρυθμίσεις Oauth Api', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'Oauth', 'oauth_help' => 'Ρυθμίσεις Τελικού Σημείου Oauth', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Ενημέρωση Ρυθμίσεων Ετικετών Παγίων', 'barcode_title' => 'Ενημέρωση Ρυθμίσεων Barcode', 'barcodes' => 'Barcodes', diff --git a/resources/lang/el-GR/general.php b/resources/lang/el-GR/general.php index f84283bf0..562095d81 100644 --- a/resources/lang/el-GR/general.php +++ b/resources/lang/el-GR/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Πρώτο Όνομα Αρχικό (smith_j@example.com)', 'firstinitial.lastname' => 'Πρώτο Αρχικό Όνομα (j.smith@example.com)', 'firstnamelastinitial' => 'Επίθετο Όνομα (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Όνομα', 'first_name_format' => 'Όνομα (jane@example.com)', 'files' => 'Αρχεία', diff --git a/resources/lang/en-GB/account/general.php b/resources/lang/en-GB/account/general.php index 7407fd0a9..556f92db0 100644 --- a/resources/lang/en-GB/account/general.php +++ b/resources/lang/en-GB/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base URL is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/en-GB/admin/locations/message.php b/resources/lang/en-GB/admin/locations/message.php index 22c7fe8f7..8121b8068 100644 --- a/resources/lang/en-GB/admin/locations/message.php +++ b/resources/lang/en-GB/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Location does not exist.', - 'assoc_users' => 'This location is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this location and try again. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ', 'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/en-GB/admin/settings/general.php b/resources/lang/en-GB/admin/settings/general.php index 0dcbc877a..58d191635 100644 --- a/resources/lang/en-GB/admin/settings/general.php +++ b/resources/lang/en-GB/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Length of asset tags, including zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/en-GB/general.php b/resources/lang/en-GB/general.php index 7f6bd12be..eb9e0cdf8 100644 --- a/resources/lang/en-GB/general.php +++ b/resources/lang/en-GB/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'First Name', 'first_name_format' => 'First Name (jane@example.com)', 'files' => 'Files', diff --git a/resources/lang/en-ID/account/general.php b/resources/lang/en-ID/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/en-ID/account/general.php +++ b/resources/lang/en-ID/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/en-ID/admin/locations/message.php b/resources/lang/en-ID/admin/locations/message.php index 4fdfae2c9..e74310ae8 100644 --- a/resources/lang/en-ID/admin/locations/message.php +++ b/resources/lang/en-ID/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Lokasi tidak ada.', - 'assoc_users' => 'Saat ini kategori ini terkait dengan setidaknya satu pengguna dan tidak dapat dihapus. Silahkan perbaharui pengguna anda untuk tidak lagi tereferensi dengan kategori ini dan coba lagi. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Saat ini kategori ini terkait dengan setidaknya satu pengguna dan tidak dapat dihapus. Silahkan perbaharui pengguna anda untuk tidak lagi tereferensi dengan kategori ini dan coba lagi. ', 'assoc_child_loc' => 'Lokasi ini saat ini merupakan induk dari setidaknya satu lokasi anak dan tidak dapat dihapus. Perbarui lokasi Anda agar tidak lagi merujuk lokasi ini dan coba lagi. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/en-ID/admin/settings/general.php b/resources/lang/en-ID/admin/settings/general.php index 1f4569ac9..490405591 100644 --- a/resources/lang/en-ID/admin/settings/general.php +++ b/resources/lang/en-ID/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Panjang tag aset, termasuk isian kosong', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/en-ID/general.php b/resources/lang/en-ID/general.php index 92813124a..65d437b2f 100644 --- a/resources/lang/en-ID/general.php +++ b/resources/lang/en-ID/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Nama Pertama', 'first_name_format' => 'Nama Depan (jane@example.com)', 'files' => 'Berkas', diff --git a/resources/lang/en-US/account/general.php b/resources/lang/en-US/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/en-US/account/general.php +++ b/resources/lang/en-US/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/en-US/admin/locations/message.php b/resources/lang/en-US/admin/locations/message.php index 22c7fe8f7..8121b8068 100644 --- a/resources/lang/en-US/admin/locations/message.php +++ b/resources/lang/en-US/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Location does not exist.', - 'assoc_users' => 'This location is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this location and try again. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ', 'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/en-US/admin/settings/general.php b/resources/lang/en-US/admin/settings/general.php index 727c35a6e..8074f5082 100644 --- a/resources/lang/en-US/admin/settings/general.php +++ b/resources/lang/en-US/admin/settings/general.php @@ -327,7 +327,6 @@ return [ 'labels' => 'Labels', 'labels_title' => 'Update Label Settings', 'labels_help' => 'Label sizes & settings', - 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', 'purge_help' => 'Purge Deleted Records', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', @@ -374,5 +373,7 @@ return [ 'database_driver' => 'Database Driver', 'bs_table_storage' => 'Table Storage', 'timezone' => 'Timezone', + 'profile_edit' => 'Edit Profile', + 'profile_edit_help' => 'Allow users to edit their own profiles.', ]; diff --git a/resources/lang/en-US/auth/general.php b/resources/lang/en-US/auth/general.php index e6a6eed0f..2bbd11278 100644 --- a/resources/lang/en-US/auth/general.php +++ b/resources/lang/en-US/auth/general.php @@ -14,6 +14,5 @@ return [ 'username_help_bottom' => 'Your username and email address may be the same, but may not be, depending on your configuration. If you cannot remember your username, contact your administrator.

Usernames without an associated email address will not be emailed a password reset link. ', 'google_login' => 'Login with Google Workspace', 'google_login_failed' => 'Google Login failed, please try again.', - ]; diff --git a/resources/lang/en-US/auth/message.php b/resources/lang/en-US/auth/message.php index f086d8c04..588c9069c 100644 --- a/resources/lang/en-US/auth/message.php +++ b/resources/lang/en-US/auth/message.php @@ -14,6 +14,8 @@ return array( 'success' => 'You have successfully logged in.', 'code_required' => 'Two-factor code is required.', 'invalid_code' => 'Two-factor code is invalid.', + 'enter_two_factor_code' => 'Please enter your two-factor authentication code.', + 'please_enroll' => 'Please enroll a device in two-factor authentication.', ), 'signin' => array( diff --git a/resources/lang/en-US/general.php b/resources/lang/en-US/general.php index ec0b8e6ee..85f2ba8cf 100644 --- a/resources/lang/en-US/general.php +++ b/resources/lang/en-US/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'First Name', 'first_name_format' => 'First Name (jane@example.com)', 'files' => 'Files', @@ -157,7 +158,7 @@ return [ 'image_upload' => 'Upload Image', 'filetypes_accepted_help' => 'Accepted filetype is :types. Max upload size allowed is :size.|Accepted filetypes are :types. Max upload size allowed is :size.', 'filetypes_size_help' => 'Max upload size allowed is :size.', - 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', + 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, svg, and avif. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Import', 'import_this_file' => 'Map fields and process this file', @@ -239,6 +240,7 @@ return [ 'restored' => 'restored', 'restore' => 'Restore', 'requestable_models' => 'Requestable Models', + 'requestable_items' => 'Requestable Items', 'requested' => 'Requested', 'requested_date' => 'Requested Date', 'requested_assets' => 'Requested Assets', diff --git a/resources/lang/es-CO/account/general.php b/resources/lang/es-CO/account/general.php index 41b1df2b2..7e637a3be 100644 --- a/resources/lang/es-CO/account/general.php +++ b/resources/lang/es-CO/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Claves API personales', - 'api_key_warning' => 'Al generar un token API, asegúrate de copiarlo inmediatamente ya que ellos - no serán visibles para ti de nuevo.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'La url base de tu API se encuentra en:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'Los tokens de la API están establecidos para expirar en:', - 'api_reference' => 'Por favor, revise la referencia API a - para encontrar puntos finales específicos de la API y documentación adicional de la API.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Cuenta actualizada exitosamente', ); diff --git a/resources/lang/es-CO/admin/accessories/general.php b/resources/lang/es-CO/admin/accessories/general.php index f664ac0ad..a0d9dba96 100644 --- a/resources/lang/es-CO/admin/accessories/general.php +++ b/resources/lang/es-CO/admin/accessories/general.php @@ -7,15 +7,15 @@ return array( 'checkin' => 'Registrar Accesorio', 'create' => 'Crear Accesorio', 'edit' => 'Editar Accesorio', - 'eula_text' => 'Términos y condiciones de la categoría', - 'eula_text_help' => 'Este campo permite personalizar los términos y condiciones para tipos específicos de activos. Si solo tiene unos términos y condiciones para todos sus activos, puede seleccionar la siguiente opción para usar el valor por defecto.', + 'eula_text' => 'Acuerdo de uso de la categoría', + 'eula_text_help' => 'Este campo permite personalizar los acuerdos de uso para tipos específicos de activos. Si solo tiene un acuerdo de uso para todos sus activos, puede seleccionar la siguiente opción para usar el valor por predeterminado.', 'require_acceptance' => 'Pedir a los usuarios confirmación de aceptación de los elementos en esta categoría.', - 'no_default_eula' => 'No se encontraron términos y condiciones por defecto. Agregue unos en Configuración.', + 'no_default_eula' => 'No se encontró el acuerdo de uso predeterminado. Agregue unos en Configuración.', 'total' => 'Total ', 'remaining' => 'Disponibles', 'update' => 'Actualizar Accesorio', - 'use_default_eula' => 'En su lugar, use los términos y condiciones por defecto.', - 'use_default_eula_disabled' => 'En su lugar, use los términos y condiciones por defecto. No están configurados términos y condiciones defecto. Por favor agregue unos en Configuración.', + 'use_default_eula' => 'En su lugar, el acuerdo de uso predeterminado.', + 'use_default_eula_disabled' => 'En su lugar, use el acuerdo de uso predeterminado. No está configurado el acuerdo de uso predeterminado. Por favor agregue uno en Configuración.', 'clone' => 'Clonar accesorio', 'delete_disabled' => 'Este accesorio no se puede eliminar aún porque algunos artículos todavía están retirados.', diff --git a/resources/lang/es-CO/admin/accessories/table.php b/resources/lang/es-CO/admin/accessories/table.php index 4810c71f1..689f74d94 100644 --- a/resources/lang/es-CO/admin/accessories/table.php +++ b/resources/lang/es-CO/admin/accessories/table.php @@ -2,7 +2,7 @@ return array( 'dl_csv' => 'Descargar CSV', - 'eula_text' => 'Términos y condiciones', + 'eula_text' => 'Acuerdo de uso', 'id' => 'ID', 'require_acceptance' => 'Aceptación', 'title' => 'Nombre de accesorio', diff --git a/resources/lang/es-CO/admin/asset_maintenances/general.php b/resources/lang/es-CO/admin/asset_maintenances/general.php index 81619c549..d98b8dede 100644 --- a/resources/lang/es-CO/admin/asset_maintenances/general.php +++ b/resources/lang/es-CO/admin/asset_maintenances/general.php @@ -1,7 +1,7 @@ 'Mantenimiento de Activos', + 'asset_maintenances' => 'Mantenimiento de activos', 'edit' => 'Editar Mantenimiento de Activos', 'delete' => 'Eliminar Mantenimiento de Activos', 'view' => 'Ver Detalles de Mantenimiento de Activos', diff --git a/resources/lang/es-CO/admin/asset_maintenances/table.php b/resources/lang/es-CO/admin/asset_maintenances/table.php index acc72367c..2cbc929d5 100644 --- a/resources/lang/es-CO/admin/asset_maintenances/table.php +++ b/resources/lang/es-CO/admin/asset_maintenances/table.php @@ -2,7 +2,7 @@ return [ 'title' => 'Mantenimiento de Activos', - 'asset_name' => 'Nombre del Activo', + 'asset_name' => 'Nombre del activo', 'is_warranty' => 'Garantía', 'dl_csv' => 'Descargar CSV', ]; diff --git a/resources/lang/es-CO/admin/categories/general.php b/resources/lang/es-CO/admin/categories/general.php index df55ee369..3e0ddf7ea 100644 --- a/resources/lang/es-CO/admin/categories/general.php +++ b/resources/lang/es-CO/admin/categories/general.php @@ -8,18 +8,18 @@ return array( 'clone' => 'Clonar categoría', 'create' => 'Crear categoría', 'edit' => 'Editar categoría', - 'email_will_be_sent_due_to_global_eula' => 'Se enviará un correo electrónico al usuario porque se están utilizando los términos y condiciones globales.', - 'email_will_be_sent_due_to_category_eula' => 'Se enviará un correo electrónico al usuario porque se han establecido términos y condiciones para esta categoría.', - 'eula_text' => 'Términos y condiciones de la categoría', - 'eula_text_help' => 'Este campo permite personalizar los términos y condiciones para tipos específicos de activos. Si solo tiene unos términos y condiciones para todos sus activos, puede seleccionar la siguiente opción para usar la definición por defecto.', - 'name' => 'Nombre de la Categoría', + 'email_will_be_sent_due_to_global_eula' => 'Se enviará un correo electrónico al usuario porque se está utilizando el acuerdo de uso global.', + 'email_will_be_sent_due_to_category_eula' => 'Se enviará un correo electrónico al usuario porque se ha establecido un acuerdo de uso para esta categoría.', + 'eula_text' => 'Acuerdo de uso de la categoría', + 'eula_text_help' => 'Este campo permite personalizar el acuerdo de uso para tipos específicos de activos. Si solo tiene un acuerdo de uso para todos sus activos, puede seleccionar la siguiente opción para usar la definición predeterminada.', + 'name' => 'Nombre de la categoría', 'require_acceptance' => 'Requerir a los usuarios que confirmen la aceptación de los elementos en esta categoría.', 'required_acceptance' => 'Este usuario recibirá un correo electrónico con un enlace para confirmar la aceptación de este elemento.', - 'required_eula' => 'Se enviará un correo electrónico a este usuario con una copia de los términos y condiciones', - 'no_default_eula' => 'No se encontró definición de los términos y condiciones por defecto. Agregue unos en Configuración.', + 'required_eula' => 'Se enviará un correo electrónico a este usuario con una copia del acuerdo de uso', + 'no_default_eula' => 'No se encontró una definición del acuerdo de uso por defecto. Agregue uno en Configuración.', 'update' => 'Actualizar categoría', - 'use_default_eula' => 'En su lugar, use los términos y condiciones por defecto.', - 'use_default_eula_disabled' => 'En su lugar, use los términos y condicione por defecto. No se han establecido términos y condiciones por defecto. Por favor agregue unos en Configuración.', - 'use_default_eula_column' => 'Usar los términos y condiciones por defecto', + 'use_default_eula' => 'En su lugar, utilice el acuerdo de uso predeterminado.', + 'use_default_eula_disabled' => 'En su lugar, utilice el acuerdo de uso predeterminado. No se ha establecido el acuerdo de uso predeterminado. Por favor agregue uno en Configuración.', + 'use_default_eula_column' => 'Utilizar el acuerdo de uso predeterminado', ); diff --git a/resources/lang/es-CO/admin/categories/table.php b/resources/lang/es-CO/admin/categories/table.php index ed2f7038d..e3bb551e9 100644 --- a/resources/lang/es-CO/admin/categories/table.php +++ b/resources/lang/es-CO/admin/categories/table.php @@ -1,7 +1,7 @@ 'Términos y condiciones', + 'eula_text' => 'Acuerdo de uso', 'id' => 'ID', 'parent' => 'Padre', 'require_acceptance' => 'Aceptación', diff --git a/resources/lang/es-CO/admin/companies/general.php b/resources/lang/es-CO/admin/companies/general.php index 83679e258..603f03ee5 100644 --- a/resources/lang/es-CO/admin/companies/general.php +++ b/resources/lang/es-CO/admin/companies/general.php @@ -1,7 +1,7 @@ 'Seleccionar Compañía', + 'select_company' => 'Seleccione una empresa', 'about_companies' => 'Acerca de las empresas', 'about_companies_description' => ' Puede utilizar las empresas como un simple campo informativo, o puede utilizarlas para restringir la visibilidad y la disponibilidad de los activos a los usuarios con una empresa específica, esto se hace habilitando la opción de "Soporte completo a varias empresas" en la "Configuración de administrador"', ]; diff --git a/resources/lang/es-CO/admin/components/general.php b/resources/lang/es-CO/admin/components/general.php index bbcdf0ba8..57a21580f 100644 --- a/resources/lang/es-CO/admin/components/general.php +++ b/resources/lang/es-CO/admin/components/general.php @@ -8,9 +8,9 @@ return array( 'create' => 'Crear Componente', 'edit' => 'Editar Componente', 'date' => 'Fecha de Compra', - 'order' => 'Orden Número', + 'order' => 'Número de orden', 'remaining' => 'Restante', 'total' => 'Total', 'update' => 'Actualizar Componente', - 'checkin_limit' => 'El importe facturado debe ser igual o menor que :assigned_qty' + 'checkin_limit' => 'La cantidad devuelta debe ser igual o menor que :assigned_qty' ); diff --git a/resources/lang/es-CO/admin/consumables/message.php b/resources/lang/es-CO/admin/consumables/message.php index 7cfd80834..7373692d0 100644 --- a/resources/lang/es-CO/admin/consumables/message.php +++ b/resources/lang/es-CO/admin/consumables/message.php @@ -10,25 +10,25 @@ return array( ), 'update' => array( - 'error' => 'Consumible no fue actualizado, por favor, inténtalo de nuevo', + 'error' => 'El consumible no fue actualizado, por favor, inténtalo de nuevo', 'success' => 'Consumible actualizado con éxito.' ), 'delete' => array( 'confirm' => '¿Estás seguro de que quieres eliminar este consumible?', - 'error' => 'Hubo un problema al eliminar este consumible. Por favor inténtalo de nuevo.', + 'error' => 'Hubo un problema al eliminar el consumible. Por favor inténtelo de nuevo.', 'success' => 'El consumible fue eliminado con éxito.' ), 'checkout' => array( - 'error' => 'El consumible no fue retirado, por favor, inténtalo de nuevo', + 'error' => 'El consumible no fue asignado, por favor inténtelo de nuevo', 'success' => 'Consumible retirado con éxito.', 'user_does_not_exist' => 'Este usuario es inválido. Por favor, inténtalo de nuevo.', 'unavailable' => 'No hay suficientes consumibles para este pago. Por favor, compruebe la cantidad restante. ', ), 'checkin' => array( - 'error' => 'Consumible no fue registrado, por favor, inténtelo de nuevo', + 'error' => 'Consumible no fue devuelto, por favor inténtelo de nuevo', 'success' => 'Consumible fue registrado con éxito.', 'user_does_not_exist' => 'El usuario no es válido. Por favor inténtalo de nuevo.' ) diff --git a/resources/lang/es-CO/admin/custom_fields/general.php b/resources/lang/es-CO/admin/custom_fields/general.php index fe34bb8cb..5b705a9f7 100644 --- a/resources/lang/es-CO/admin/custom_fields/general.php +++ b/resources/lang/es-CO/admin/custom_fields/general.php @@ -4,16 +4,16 @@ return [ 'custom_fields' => 'Campos personalizados', 'manage' => 'Gestionar', 'field' => 'Campo', - 'about_fieldsets_title' => 'Acerca de los Grupos de Campos Personalizados (Fieldsets)', - 'about_fieldsets_text' => 'Los conjuntos de campos permiten crear grupos de campos personalizados que son frecuentemente reutilizados para tipos específicos de modelos de activos.', + 'about_fieldsets_title' => 'Acerca de los grupos de campos', + 'about_fieldsets_text' => 'Los grupos de campos le permiten agrupar campos personalizados que se reutilizan frecuentemente para determinados modelos de activos.', 'custom_format' => 'Formato de Regex personalizado...', 'encrypt_field' => 'Encriptar el valor de este campo en la base de datos', 'encrypt_field_help' => 'ADVERTENCIA: Encriptar un campo hace que no se pueda buscar.', 'encrypted' => 'Encriptado', - 'fieldset' => 'Fieldset', - 'qty_fields' => 'Campos de Cantidad', - 'fieldsets' => 'Fieldset', - 'fieldset_name' => 'Nombre del Fieldset', + 'fieldset' => 'Grupo de campos', + 'qty_fields' => 'Campos de cantidad', + 'fieldsets' => 'Grupo de campos', + 'fieldset_name' => 'Nombre del grupo de campos', 'field_name' => 'Nombre del Campo', 'field_values' => 'Valores del Campo', 'field_values_help' => 'Añade opciones seleccionables, una por línea. Líneas en blanco además de la primera será ignorada.', @@ -26,9 +26,9 @@ return [ 'req' => 'Obl.', 'used_by_models' => 'Usado por Modelos', 'order' => 'Orden', - 'create_fieldset' => 'Nuevo Fieldset', - 'update_fieldset' => 'Actualizar conjunto de campos', - 'fieldset_does_not_exist' => 'Fieldset :id no existe', + 'create_fieldset' => 'Nuevo grupo de campos', + 'update_fieldset' => 'Actualizar grupo de campos', + 'fieldset_does_not_exist' => 'El grupo de campos :id no existe', 'fieldset_updated' => 'Conjunto de campos actualizado', 'create_fieldset_title' => 'Crear un nuevo conjunto de campos', 'create_field' => 'Nuevo Campo Personalizado', diff --git a/resources/lang/es-CO/admin/departments/table.php b/resources/lang/es-CO/admin/departments/table.php index 2db6cacad..d857c08c6 100644 --- a/resources/lang/es-CO/admin/departments/table.php +++ b/resources/lang/es-CO/admin/departments/table.php @@ -4,7 +4,7 @@ return array( 'id' => 'ID', 'name' => 'Nombre de Departamento', - 'manager' => 'Manager', + 'manager' => 'Supervisor', 'location' => 'Ubicación', 'create' => 'Crear Departamento', 'update' => 'Actualizar Departamento', diff --git a/resources/lang/es-CO/admin/depreciations/general.php b/resources/lang/es-CO/admin/depreciations/general.php index c9c549087..a99d8917e 100644 --- a/resources/lang/es-CO/admin/depreciations/general.php +++ b/resources/lang/es-CO/admin/depreciations/general.php @@ -1,11 +1,11 @@ 'Acerca de Depreciaciones de Equipos', - 'about_depreciations' => 'Puedes establecer las depreciaciones de equipos para depreciar los equipos basados en una depreciación en línea recta.', - 'asset_depreciations' => 'Depreciación de Equipos', - 'create' => 'Crear Depreciación', - 'depreciation_name' => 'Nombre de Depreciación', + 'about_asset_depreciations' => 'Sobre depreciación de activos', + 'about_depreciations' => 'Puede configurar la depreciación de activos usando un método de línea recta.', + 'asset_depreciations' => 'Depreciación de activos', + 'create' => 'Crear depreciación', + 'depreciation_name' => 'Nombre de depreciación', 'depreciation_min' => 'Valor del piso de la depreciación', 'number_of_months' => 'Número de Meses', 'update' => 'Actualizar Depreciación', diff --git a/resources/lang/es-CO/admin/hardware/form.php b/resources/lang/es-CO/admin/hardware/form.php index e6338e1ce..b105aa21f 100644 --- a/resources/lang/es-CO/admin/hardware/form.php +++ b/resources/lang/es-CO/admin/hardware/form.php @@ -19,12 +19,12 @@ return [ 'checkout_to' => 'Asignar a', 'cost' => 'Precio de compra', 'create' => 'Creación de Equipo', - 'date' => 'Fecha de Compra', + 'date' => 'Fecha de compra', 'depreciation' => 'Depreciación', 'depreciates_on' => 'Se deprecia en', - 'default_location' => 'Ubicación Predeterminada', + 'default_location' => 'Ubicación predeterminada', 'default_location_phone' => 'Teléfono de ubicación por defecto', - 'eol_date' => 'Fecha Fin Vida Útil', + 'eol_date' => 'Fecha fin de soporte (EOL)', 'eol_rate' => 'Vita Útil', 'expected_checkin' => 'Fecha esperada de devolución', 'expires' => 'Expira', @@ -34,15 +34,15 @@ return [ 'manufacturer' => 'Fabricante', 'model' => 'Modelo', 'months' => 'meses', - 'name' => 'Nombre del Equipo', + 'name' => 'Nombre del activo', 'notes' => 'Notas', - 'order' => 'Orden Número', + 'order' => 'Número de orden', 'qr' => 'Código QR', 'requestable' => 'Los usuarios pueden solicitar este elemento', 'redirect_to_all' => 'Return to all :type', 'redirect_to_type' => 'Ir a :type', 'redirect_to_checked_out_to' => 'Go to Checked Out to', - 'select_statustype' => 'Selecciona Tipo de Estado', + 'select_statustype' => 'Seleccione un tipo de estado', 'serial' => 'Número de serie', 'status' => 'Estado', 'tag' => 'Etiqueta del Equipo', diff --git a/resources/lang/es-CO/admin/hardware/general.php b/resources/lang/es-CO/admin/hardware/general.php index e88e781bc..961ca65d8 100644 --- a/resources/lang/es-CO/admin/hardware/general.php +++ b/resources/lang/es-CO/admin/hardware/general.php @@ -6,14 +6,14 @@ return [ 'archived' => 'Archivado', 'asset' => 'Equipo', 'bulk_checkout' => 'Asignar Equipos', - 'bulk_checkin' => 'Checkin Assets', - 'checkin' => 'Devolver Equipo', + 'bulk_checkin' => 'Devolver activos', + 'checkin' => 'Devolver activo', 'checkout' => 'Asignar Equipo', - 'clone' => 'Clonar Equipo', + 'clone' => 'Clonar activo', 'deployable' => 'Utilizable', 'deleted' => 'Este activo ha sido borrado.', 'delete_confirm' => '¿Está seguro de que desea eliminar este recurso?', - 'edit' => 'Editar Equipo', + 'edit' => 'Editar activo', 'model_deleted' => 'El modelo de este activo ha sido borrado. Debe restaurar el modelo antes de restaurar o crear el activo.', 'model_invalid' => 'Este modelo para este activo es inválido.', 'model_invalid_fix' => 'The asset must be updated use a valid asset model before attempting to check it in or out, or to audit it.', @@ -25,7 +25,7 @@ return [ 'pending' => 'Pendiente', 'undeployable' => 'No utilizable', 'undeployable_tooltip' => 'Este activo tiene una etiqueta de estado que no es desplegable y no puede ser revisado en este momento.', - 'view' => 'Ver Equipo', + 'view' => 'Ver activo', 'csv_error' => 'Tiene un error en su archivo CSV:', 'import_text' => '

Sube un archivo CSV que contenga el historial de activos. Los activos y los usuarios DEBEN existir ya en el sistema, o serán omitidos. La importación del historial busca activos que coincidan con la etiqueta de activo. Intentaremos encontrar un usuario usando el nombre del usuario que proporciones y los criterios que selecciones a continuación. Si no seleccionas ningún criterio a continuación, el sistema simplemente intentará usar el formato de nombre de usuario que configuraste en Admin > Opciones Generales.

Los campos incluidos en el CSV deben coincidir con los encabezados: Asset Tag, Name, Checkout Date, Checkin Date. Cualquier campo adicional será ignorado.

Checkin Date(Fecha de Devolución): dejar en blanco o usar fechas futuras asignará los ítems al usuario asociado. Excluir la columna Checkin Date creará una fecha de devolución con la fecha de hoy.

', 'csv_import_match_f-l' => 'Intenta emparejar usuarios con formato nombre.lastname (jane.smith)', diff --git a/resources/lang/es-CO/admin/hardware/message.php b/resources/lang/es-CO/admin/hardware/message.php index 5a4b59850..8c975107d 100644 --- a/resources/lang/es-CO/admin/hardware/message.php +++ b/resources/lang/es-CO/admin/hardware/message.php @@ -12,7 +12,7 @@ return [ 'warning_audit_date_mismatch' => 'La próxima fecha de auditoría de este activo (:next_audit_date) es anterior a la última fecha de auditoría (:last_audit_date). Por favor, actualice la próxima fecha de auditoría.', 'create' => [ - 'error' => 'El recurso no fue creado, por favor inténtalo de nuevo. :(', + 'error' => 'El activo no fue creado, por favor, inténtelo de nuevo. :(', 'success' => 'Equipo creado con éxito. :)', 'success_linked' => 'Activo con etiqueta :tag creado con éxito. Haga clic aquí para ver.', ], @@ -71,7 +71,7 @@ return [ ], 'checkout' => [ - 'error' => 'El recurso no fue retirado, por favor inténtalo de nuevo', + 'error' => 'El activo no fue asignado, por favor inténtelo de nuevo', 'success' => 'Equipo retirado con éxito.', 'user_does_not_exist' => 'Este usuario es inválido. Por favor, inténtalo de nuevo.', 'not_available' => '¡Ese equipo no está disponible para asignar!', @@ -79,9 +79,9 @@ return [ ], 'checkin' => [ - 'error' => 'El equipo no pudo ser asignado, por favor inténtalo de nuevo', - 'success' => 'El equipo fue asignado exitosamente.', - 'user_does_not_exist' => 'Es usuario es invalido, por favor inténtalo de nuevo.', + 'error' => 'El equipo no se pudo devolver, por favor inténtelo de nuevo', + 'success' => 'El activo fue devuelto exitosamente.', + 'user_does_not_exist' => 'Es usuario no es correcto, por favor inténtelo de nuevo.', 'already_checked_in' => 'El equipo ya ha sido devuelto.', ], diff --git a/resources/lang/es-CO/admin/hardware/table.php b/resources/lang/es-CO/admin/hardware/table.php index 487ecf839..23132cee7 100644 --- a/resources/lang/es-CO/admin/hardware/table.php +++ b/resources/lang/es-CO/admin/hardware/table.php @@ -15,7 +15,7 @@ return [ 'dl_csv' => 'Descargar CSV', 'eol' => 'Vida útil', 'id' => 'ID', - 'last_checkin_date' => 'Last Checkin Date', + 'last_checkin_date' => 'Última fecha de devolución', 'location' => 'Ubicación', 'purchase_cost' => 'Precio', 'purchase_date' => 'Comprado', diff --git a/resources/lang/es-CO/admin/licenses/form.php b/resources/lang/es-CO/admin/licenses/form.php index 1595d507f..bf692e740 100644 --- a/resources/lang/es-CO/admin/licenses/form.php +++ b/resources/lang/es-CO/admin/licenses/form.php @@ -3,8 +3,8 @@ return array( 'asset' => 'Equipo', - 'checkin' => 'Entrada', - 'create' => 'Crear Licencia', + 'checkin' => 'Devolver', + 'create' => 'Crear licencia', 'expiration' => 'Fecha de caducidad', 'license_key' => 'Clave del producto', 'maintained' => 'Mantenido', @@ -18,5 +18,5 @@ return array( 'to_email' => 'Licenciado a Email', 'to_name' => 'Licenciado a Nombre', 'update' => 'Actualizar Licencia', - 'checkout_help' => 'Debe comprobar una licencia a un activo de hardware o a una persona. Puede seleccionar ambos, pero el propietario del activo debe coincidir con la persona a la que está comprobando el activo.' + 'checkout_help' => 'Debe asignar una licencia a un activo de hardware o a una persona. Puede seleccionar ambos, pero el propietario del activo debe coincidir con la persona a la que está asignado el activo.' ); diff --git a/resources/lang/es-CO/admin/licenses/message.php b/resources/lang/es-CO/admin/licenses/message.php index 58fa11ce0..0fefec09d 100644 --- a/resources/lang/es-CO/admin/licenses/message.php +++ b/resources/lang/es-CO/admin/licenses/message.php @@ -47,7 +47,7 @@ return array( ), 'checkin' => array( - 'error' => 'Se ha producido un error al comprobar la licencia. Por favor, inténtalo de nuevo.', + 'error' => 'Hubo un problema devolviendo la licencia. Por favor, inténtalo de nuevo.', 'success' => 'La licencia fue registrada con éxito' ), diff --git a/resources/lang/es-CO/admin/licenses/table.php b/resources/lang/es-CO/admin/licenses/table.php index 80920d99c..575201c9f 100644 --- a/resources/lang/es-CO/admin/licenses/table.php +++ b/resources/lang/es-CO/admin/licenses/table.php @@ -8,7 +8,7 @@ return array( 'id' => 'ID', 'license_email' => 'Email de licencia', 'license_name' => 'Licenciado a', - 'purchase_date' => 'Fecha de Compra', + 'purchase_date' => 'Fecha de compra', 'purchased' => 'Comprado', 'seats' => 'Asientos', 'hardware' => 'Hardware', diff --git a/resources/lang/es-CO/admin/locations/message.php b/resources/lang/es-CO/admin/locations/message.php index ee9717305..82fc9bc64 100644 --- a/resources/lang/es-CO/admin/locations/message.php +++ b/resources/lang/es-CO/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Ubicación inexistente.', - 'assoc_users' => 'La ubicación esta asociada con al menos un usuario, por lo que no puede eliminarse. Actualiza la información de tus usuarios para que no la usen, e inténtalo de nuevo. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'La ubicación esta asociada con al menos un equipo, por lo que no puede eliminarse. Por favor actualiza la información de tus equipos para que no la usen, e inténtalo de nuevo. ', 'assoc_child_loc' => 'La ubicación esta asociada con al menos una ubicación hija, por lo que no puede eliminarse. Actualiza la información de tus ubicaciones para desasociarlas, e inténtalo de nuevo. ', 'assigned_assets' => 'Recursos asignados', diff --git a/resources/lang/es-CO/admin/locations/table.php b/resources/lang/es-CO/admin/locations/table.php index d3b99cc9e..484429be7 100644 --- a/resources/lang/es-CO/admin/locations/table.php +++ b/resources/lang/es-CO/admin/locations/table.php @@ -8,7 +8,7 @@ return [ 'id' => 'ID', 'city' => 'Ciudad', 'state' => 'Departamento', - 'country' => 'Pais', + 'country' => 'País', 'create' => 'Crear ubicación', 'update' => 'Actualizar ubicación', 'print_assigned' => 'Imprimir los asignados', @@ -16,9 +16,9 @@ return [ 'name' => 'Nombre de ubicación', 'address' => 'Dirección', 'address2' => 'Dirección línea 2', - 'zip' => 'Código Postal', + 'zip' => 'Código postal', 'locations' => 'Ubicaciones', - 'parent' => 'Ubicación Padre', + 'parent' => 'Ubicación padre', 'currency' => 'Moneda de ubicación', 'ldap_ou' => 'OU de búsqueda LDAP', 'user_name' => 'Usuario', @@ -32,7 +32,7 @@ return [ 'asset_serial' => 'Número de serie', 'asset_location' => 'Ubicación', 'asset_checked_out' => 'Asignado a', - 'asset_expected_checkin' => 'Checkin Esperado', + 'asset_expected_checkin' => 'Fecha esperada de devolución', 'date' => 'Fecha:', 'phone' => 'Teléfono ubicación', 'signed_by_asset_auditor' => 'Firmado por (Juego de Acciones):', diff --git a/resources/lang/es-CO/admin/manufacturers/table.php b/resources/lang/es-CO/admin/manufacturers/table.php index e2549a885..949b27352 100644 --- a/resources/lang/es-CO/admin/manufacturers/table.php +++ b/resources/lang/es-CO/admin/manufacturers/table.php @@ -7,10 +7,10 @@ return array( 'create' => 'Crear fabricante', 'id' => 'ID', 'name' => 'Nombre', - 'support_email' => 'Email de Soporte', + 'support_email' => 'Email de soporte', 'support_phone' => 'Teléfono de soporte', 'support_url' => 'URL de soporte', - 'warranty_lookup_url' => 'URL de Búsqueda de Garantía', + 'warranty_lookup_url' => 'URL de búsqueda de garantía', 'update' => 'Actualizar Manufacturer', ); diff --git a/resources/lang/es-CO/admin/models/general.php b/resources/lang/es-CO/admin/models/general.php index 42c34b40e..8ba0441f4 100644 --- a/resources/lang/es-CO/admin/models/general.php +++ b/resources/lang/es-CO/admin/models/general.php @@ -12,7 +12,7 @@ return array( 'show_mac_address' => 'Mostrar campo de dirección MAC en los activos de este modelo', 'view_deleted' => 'Vista eliminada', 'view_models' => 'Ver modelos', - 'fieldset' => 'Fieldset', + 'fieldset' => 'Grupos de campo', 'no_custom_field' => 'No hay campos personalizados', 'add_default_values' => 'Añadir valores por defecto', ); diff --git a/resources/lang/es-CO/admin/models/table.php b/resources/lang/es-CO/admin/models/table.php index 2352df53c..087f3eb10 100644 --- a/resources/lang/es-CO/admin/models/table.php +++ b/resources/lang/es-CO/admin/models/table.php @@ -6,7 +6,7 @@ return array( 'created_at' => 'Creado el', 'eol' => 'Vida útil', 'modelnumber' => 'Modelo Nro.', - 'name' => 'Nombre Modelo de Equipo', + 'name' => 'Nombre del modelo de activo', 'numassets' => 'Equipos', 'title' => 'Modelos de equipo', 'update' => 'Actualizar Modelo de Equipo', diff --git a/resources/lang/es-CO/admin/settings/general.php b/resources/lang/es-CO/admin/settings/general.php index bf1de4f2c..16ab551ec 100644 --- a/resources/lang/es-CO/admin/settings/general.php +++ b/resources/lang/es-CO/admin/settings/general.php @@ -46,11 +46,11 @@ return [ 'dashboard_message' => 'Mensaje del Tablero', 'dashboard_message_help' => 'Este texto aparecerá en el panel de control para cualquiera con permiso para ver el tablero.', 'default_currency' => 'Moneda por defecto', - 'default_eula_text' => 'Términos y condiciones por defecto', + 'default_eula_text' => 'Acuerdo de uso predeterrminado', 'default_language' => 'Idioma por defecto', - 'default_eula_help_text' => 'También puede asociar términos y condiciones personalizados a categorías específicas.', + 'default_eula_help_text' => 'También puede asociar acuerdos de uso personalizados a categorías específicas.', 'acceptance_note' => 'Añada una nota para su decisión (opcional)', - 'display_asset_name' => 'Mostrar nombre de activo', + 'display_asset_name' => 'Mostrar nombre del activo', 'display_checkout_date' => 'Mostrar fecha de asignación', 'display_eol' => 'Mostrar EOL en vista de tabla', 'display_qr' => 'Mostrar códigos cuadrados', @@ -60,8 +60,8 @@ return [ 'alt_barcode_type' => 'Tipo de código de barras 1D', 'email_logo_size' => 'Los logotipos cuadrados en el correo electrónico se ven mejor. ', 'enabled' => 'Activado', - 'eula_settings' => 'Configuración de los términos y condiciones', - 'eula_markdown' => 'Estos términos y condiciones permiten markdown estilo Github.', + 'eula_settings' => 'Configuración de los acuerdos de uso', + 'eula_markdown' => 'Estos acuerdos de uso permiten markdown estilo Github.', 'favicon' => 'Favicon', 'favicon_format' => 'Los tipos de archivo aceptados son ico, png y gif. Otros formatos de imagen pueden no funcionar en todos los navegadores.', 'favicon_size' => 'Favicons deben ser imágenes cuadradas, 16x16 píxeles.', @@ -69,7 +69,7 @@ return [ 'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Se permiten enlaces usando Github con sabor a markdown. Saltos de línea, cabeceras, imágenes, etc. pueden resultar impredecibles.', 'general_settings' => 'Configuración General', 'general_settings_keywords' => 'soporte de la empresa, firma, aceptación, formato de correo electrónico, formato de nombre de usuario, imágenes, por página, miniatura, eula, acuerdo de licencia de usuario final, términos y condiciones, gravatar, términos de servicio, tablero de indicadores, privacidad', - 'general_settings_help' => 'Términos y condiciones por defecto y más', + 'general_settings_help' => 'Acuerdo de uso predeterminado y más', 'generate_backup' => 'Generar copia de seguridad', 'google_workspaces' => 'Espacios de trabajo de Google', 'header_color' => 'Color de cabecera', @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Longitud de etiquetas de activos, incluyendo zerofill', 'username_format_help' => 'Esta configuración sólo será utilizada por el proceso de importación si no se proporciona un nombre de usuario y tenemos que generar un nombre de usuario para usted.', 'oauth_title' => 'Configuración de la API de OAuth', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Configuración de Oauth Endpoint', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Actualizar ajustes de etiqueta de activos', 'barcode_title' => 'Actualizar ajustes de código de barras', 'barcodes' => 'Barcodes', @@ -362,7 +372,7 @@ return [ 'mail_reply_to' => 'Dirección de respuesta de correo', 'mail_from' => 'Correo desde la dirección', 'database_driver' => 'Controlador de base de datos', - 'bs_table_storage' => 'Almacenamiento de Tabla', + 'bs_table_storage' => 'Almacenamiento de tabla', 'timezone' => 'Timezone', ]; diff --git a/resources/lang/es-CO/admin/statuslabels/message.php b/resources/lang/es-CO/admin/statuslabels/message.php index e2ce2e064..5d9bda453 100644 --- a/resources/lang/es-CO/admin/statuslabels/message.php +++ b/resources/lang/es-CO/admin/statuslabels/message.php @@ -24,8 +24,8 @@ return [ 'help' => [ 'undeployable' => 'Estos equipos no pueden ser asignados.', - 'deployable' => 'Estos activos pueden ser retirados. Una vez estén asignados, asumirán el meta estado de Asignado.', - 'archived' => 'Estos equipos no pueden ser asignados, y solo se mostrarán en la vista de Archivados. Esto es útil para retener información sobre equipos por razones de presupuesto/revisión histórica, mientras están fuera de la lista de equipos del día a día.', + 'deployable' => 'Estos activos pueden ser asignados. Una vez estén asignados, asumirán el meta estado de Asignado.', + 'archived' => 'Estos equipos no pueden ser asignados y solo se mostrarán en la vista de Archivados. Esto es útil para mantener información de activos por razones de presupuesto o de revisión histórica y al mismo tiempo se excluyen de los activos que se pueden usar en el día a día.', 'pending' => 'Estos equipos no pueden ser asignados, suele usarse para ítems que están en reparación, o que se espera que regresen a circulación eventualmente.', ], diff --git a/resources/lang/es-CO/admin/statuslabels/table.php b/resources/lang/es-CO/admin/statuslabels/table.php index f5e068710..35ab51949 100644 --- a/resources/lang/es-CO/admin/statuslabels/table.php +++ b/resources/lang/es-CO/admin/statuslabels/table.php @@ -1,17 +1,17 @@ 'Acerca de las Etiquetas de Estado', + 'about' => 'Acerca de las etiquetas de estado', 'archived' => 'Archivado', 'create' => 'Crear Etiqueta de Estado', - 'color' => 'Color de la Gráfica', - 'default_label' => 'Etiqueta Predeterminada', + 'color' => 'Color en el gráfico', + 'default_label' => 'Etiqueta predeterminada', 'default_label_help' => 'Esto se usa para asegurar que tus etiquetas de estado de uso frecuente aparezcan en primer lugar en el campo de selección de estado, durante la creación/edición de equipos.', 'deployable' => 'Utilizable', 'info' => 'Las etiquetas de estado se usan para describir los diferentes estados en que pueden estar sus equipos. Por ejemplo: en reparación, perdidos/robados, etc. Puede crear nuevas etiquetas de estado para equipos utilizables, pendientes o archivados.', - 'name' => 'Nombre Estado', + 'name' => 'Nombre de estado', 'pending' => 'Pendiente', - 'status_type' => 'Tipo Estado', + 'status_type' => 'Tipo de estado', 'show_in_nav' => 'Mostrar en barra lateral', 'title' => 'Etiquetas de estado', 'undeployable' => 'No utilizable', diff --git a/resources/lang/es-CO/admin/suppliers/table.php b/resources/lang/es-CO/admin/suppliers/table.php index 0182e7024..d5f809097 100644 --- a/resources/lang/es-CO/admin/suppliers/table.php +++ b/resources/lang/es-CO/admin/suppliers/table.php @@ -7,9 +7,9 @@ return array( 'assets' => 'Activos', 'city' => 'Ciudad', 'contact' => 'Nombre de contacto', - 'country' => 'Pais', + 'country' => 'País', 'create' => 'Crear Proveedor', - 'email' => 'Email', + 'email' => 'Correo electrónico', 'fax' => 'Fax', 'id' => 'ID', 'licenses' => 'Licencias', @@ -20,7 +20,7 @@ return array( 'suppliers' => 'Proveedores', 'update' => 'Actualizar proveedor', 'view' => 'Ver Proveedor', - 'view_assets_for' => 'Ver recursos para', - 'zip' => 'Código Postal', + 'view_assets_for' => 'Ver activos para', + 'zip' => 'Código postal', ); diff --git a/resources/lang/es-CO/admin/users/general.php b/resources/lang/es-CO/admin/users/general.php index 1c4a952bd..5cd014761 100644 --- a/resources/lang/es-CO/admin/users/general.php +++ b/resources/lang/es-CO/admin/users/general.php @@ -16,13 +16,13 @@ return [ 'restore_user' => 'Haga clic aquí para restaurarlos.', 'last_login' => 'Último acceso', 'ldap_config_text' => 'Los ajustes de configuración LDAP se pueden encontrar Admin > Configuración. La ubicación (opcional) seleccionada se establecerá para todos los usuarios importados.', - 'print_assigned' => 'Imprimir todos los Asignados', - 'email_assigned' => 'Lista de Correos Asignados', + 'print_assigned' => 'Imprimir todos los asignados', + 'email_assigned' => 'Enviar correo con todos los asignados', 'user_notified' => 'El usuario ha sido enviado por correo electrónico a una lista de sus elementos asignados actualmente.', 'auto_assign_label' => 'Incluye a este usuario al asignar automáticamente licencias elegibles', 'auto_assign_help' => 'Omitir este usuario en la asignación automática de licencias', 'software_user' => 'Software comprado a :name', - 'send_email_help' => 'Debe proporcionar una dirección de correo electrónico para que este usuario le envíe credenciales. Las credenciales de correo electrónico sólo se pueden hacer en la creación del usuario. Las contraseñas se almacenan en un hash de un solo sentido y no se pueden recuperar una vez guardadas.', + 'send_email_help' => 'Debe proporcionar una dirección de correo electrónico para este usuario para poder enviarle las credenciales. Únicamente pueden enviarse las credenciales por correo eléctronico durante la creación del usuario. Las contraseñas se almacenan en un hash de un solo sentido y no se pueden recuperar una vez guardadas.', 'view_user' => 'Ver usuario :name', 'usercsv' => 'Archivo CSV', 'two_factor_admin_optin_help' => 'La configuración actual permite la aplicación selectiva de la autenticación de dos factores. ', @@ -40,10 +40,10 @@ return [ 'checkin_user_properties' => 'Comprobar todas las propiedades asociadas a estos usuarios', 'remote_label' => 'Este es un usuario remoto', 'remote' => 'Remoto', - 'remote_help' => 'Esto puede ser útil si necesita filtrar por usuarios remotos que nunca o raramente entran en sus ubicaciones físicas.', + 'remote_help' => 'Esto puede ser útil si necesita filtrar por usuarios remotos que nunca o raramente asisten a sus ubicaciones físicas.', 'not_remote_label' => 'Este no es un usuario remoto', 'vip_label' => 'Usuario VIP', - 'vip_help' => 'Esto puede ser útil para marcar a personas importantes en su org si desea manejarlas de maneras especiales.', + 'vip_help' => 'Esto puede ser útil como indicador de personas importantes en su organización si desea tratarlas de forma especial.', 'create_user' => 'Crear un usuario', 'create_user_page_explanation' => 'Esta es la información de la cuenta que usará para acceder al sitio por primera vez.', 'email_credentials' => 'Credenciales de email', diff --git a/resources/lang/es-CO/admin/users/message.php b/resources/lang/es-CO/admin/users/message.php index f19983db7..e2b3cf832 100644 --- a/resources/lang/es-CO/admin/users/message.php +++ b/resources/lang/es-CO/admin/users/message.php @@ -11,7 +11,7 @@ return array( 'user_has_no_assets_assigned' => 'No hay activos asignados al usuario.', 'user_password_required' => 'La contraseña es obligatoria.', 'insufficient_permissions' => 'Permisos insuficientes.', - 'user_deleted_warning' => 'Este usuario ha sido eliminado. Tendrá que restaurar este usuario para editarlo o asignarle nuevos recursos.', + 'user_deleted_warning' => 'Este usuario ha sido eliminado. Tendrá que restaurar este usuario para editarlo o para asignarle nuevos activos.', 'ldap_not_configured' => 'La integración LDAP no ha sido configurada para esta instalación.', 'password_resets_sent' => 'Los usuarios seleccionados que están activados y tienen una dirección de correo electrónico válida han sido enviados un enlace de restablecimiento de contraseña.', 'password_reset_sent' => 'Un enlace para restablecer la contraseña ha sido enviado a :email!', diff --git a/resources/lang/es-CO/admin/users/table.php b/resources/lang/es-CO/admin/users/table.php index 90cc5e6d9..f2f068c29 100644 --- a/resources/lang/es-CO/admin/users/table.php +++ b/resources/lang/es-CO/admin/users/table.php @@ -7,7 +7,7 @@ return array( 'created_at' => 'Creado', 'createuser' => 'Crear Usuario', 'deny' => 'Denegar', - 'email' => 'Email', + 'email' => 'Correo electrónico', 'employee_num' => 'Nro. Empleado', 'first_name' => 'Nombres', 'groupnotes' => 'Seleccione un grupo para asignar al usuario, recuerde que un usuario asume los permisos del grupo al que se le asigna. Use ctrl+click (o cmd+click en MacOS) para anular la selección de grupos.', @@ -18,7 +18,7 @@ return array( 'last_name' => 'Apellidos', 'location' => 'Ubicación', 'lock_passwords' => 'Los detalles de inicio de sesión no pueden ser cambiados en esta instalación.', - 'manager' => 'Jefe Inmediato', + 'manager' => 'Supervisor', 'managed_locations' => 'Ubicaciones gestionadas', 'managed_users' => 'Usuarios gestionados', 'name' => 'Nombre', diff --git a/resources/lang/es-CO/auth/general.php b/resources/lang/es-CO/auth/general.php index 1e3b2e33d..07f923b85 100644 --- a/resources/lang/es-CO/auth/general.php +++ b/resources/lang/es-CO/auth/general.php @@ -2,7 +2,7 @@ return [ 'send_password_link' => 'Enviar enlace de restablecimiento de contraseña', - 'email_reset_password' => 'Enviar correo para restablecer contraseña', + 'email_reset_password' => 'Enviar correo', 'reset_password' => 'Restablecer contraseña', 'saml_login' => 'Iniciar sesión a través de SAML', 'login' => 'Entrar', diff --git a/resources/lang/es-CO/button.php b/resources/lang/es-CO/button.php index 9a149869b..fd86fa36a 100644 --- a/resources/lang/es-CO/button.php +++ b/resources/lang/es-CO/button.php @@ -4,7 +4,7 @@ return [ 'actions' => 'Acciones', 'add' => 'Agregar nuevo', 'cancel' => 'Cancelar', - 'checkin_and_delete' => 'Checkin All / Eliminar Usuario', + 'checkin_and_delete' => 'Devolver todo / Eliminar usuario', 'delete' => 'Eliminar', 'edit' => 'Editar', 'restore' => 'Restaurar', @@ -12,8 +12,8 @@ return [ 'request' => 'Solicitud', 'submit' => 'Enviar', 'upload' => 'Cargar', - 'select_file' => 'Seleccionar Archivo...', - 'select_files' => 'Selecciona Archivos...', + 'select_file' => 'Seleccione un archivo...', + 'select_files' => 'Seleccionar archivos...', 'generate_labels' => '{1} Generar Etiqueta|[2,*] Generar Etiquetas', 'send_password_link' => 'Enviar enlace de restablecimiento de contraseña', 'go' => 'Ir', diff --git a/resources/lang/es-CO/general.php b/resources/lang/es-CO/general.php index 6c43f35d8..40b19794b 100644 --- a/resources/lang/es-CO/general.php +++ b/resources/lang/es-CO/general.php @@ -6,9 +6,9 @@ return [ 'activated' => 'Activado', 'accepted_date' => 'Fecha aceptada', 'accessory' => 'Accesorio', - 'accessory_report' => 'Reporte de Accesorios', + 'accessory_report' => 'Informe de accesorios', 'action' => 'Acción', - 'activity_report' => 'Reporte de Actividad', + 'activity_report' => 'Informe de actividad', 'address' => 'Dirección', 'admin' => 'Admin', 'admin_tooltip' => 'Este usuario tiene privilegios de superadministrador', @@ -45,12 +45,12 @@ return [ 'bad_data' => 'No se ha encontrado nada. ¿Tal vez datos erróneos?', 'bulkaudit' => 'Auditoría masiva', 'bulkaudit_status' => 'Estado de auditoría', - 'bulk_checkout' => 'Pago en masa', + 'bulk_checkout' => 'Asignación masiva', 'bulk_edit' => 'Edición masiva', 'bulk_delete' => 'Eliminar en masa', 'bulk_actions' => 'Acciones en masa', 'bulk_checkin_delete' => 'Checkin en masa / Eliminar usuarios', - 'byod' => 'SU', + 'byod' => 'BYOD', 'byod_help' => 'Este dispositivo es propiedad del usuario', 'bystatus' => 'por Estado', 'cancel' => 'Cancelar', @@ -59,11 +59,11 @@ return [ 'change' => 'Entrada/Salida', 'changeemail' => 'Cambiar dirección de email', 'changepassword' => 'Cambiar contraseña', - 'checkin' => 'Entrada', + 'checkin' => 'Devolver', 'checkin_from' => 'Devolución de', 'checkout' => 'Asignar', - 'checkouts_count' => 'Pagos', - 'checkins_count' => 'Checkins', + 'checkouts_count' => 'Asignaciones', + 'checkins_count' => 'Devoluciones', 'user_requests_count' => 'Solicitudes', 'city' => 'Ciudad', 'click_here' => 'Haz clic aquí', @@ -75,7 +75,7 @@ return [ 'complete' => 'Complete', 'consumable' => 'Consumible', 'consumables' => 'Consumibles', - 'country' => 'Pais', + 'country' => 'País', 'could_not_restore' => 'Error al restaurar :item_type: :error', 'not_deleted' => 'El :item_type no está borrado por lo que no puede ser restaurado', 'create' => 'Crear nuevo', @@ -104,17 +104,17 @@ return [ 'deletion_failed' => 'Error al eliminar', 'departments' => 'Departamentos', 'department' => 'Departamento', - 'deployed' => 'Asignados-', + 'deployed' => 'Asignados', 'depreciation' => 'Depreciación', 'depreciations' => 'Depreciaciones', 'depreciation_report' => 'Informe de depreciación', 'details' => 'Detalles', 'download' => 'Descargar', 'download_all' => 'Descargar todo', - 'editprofile' => 'Editar tu perfil', + 'editprofile' => 'Editar perfil', 'eol' => 'Vida útil', 'email_domain' => 'Dominio de Email', - 'email_format' => 'Email Format', + 'email_format' => 'Formato de correo electrónico', 'employee_number' => 'Número de empleado', 'email_domain_help' => 'Esto se utiliza para generar direcciones de correo electrónico al importar', 'error' => 'Error', @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Apellidos de la primera iniciativa (smith_j@ejemplo.com)', 'firstinitial.lastname' => 'Primer apellido inicial (j.smith@ejemplo.com)', 'firstnamelastinitial' => 'Apellidos de nombre (janes@ejemplo.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Nombres', 'first_name_format' => 'Nombre (jane@ejemplo.com)', 'files' => 'Archivos', @@ -153,8 +154,8 @@ return [ 'id' => 'ID', 'image' => 'Imagen', 'image_delete' => 'Borrar imagen', - 'include_deleted' => 'Incluye Activos Eliminados', - 'image_upload' => 'Subir imagen', + 'include_deleted' => 'Incluir activos eliminados', + 'image_upload' => 'Cargar imagen', 'filetypes_accepted_help' => 'El tipo de archivo aceptado es :types. El tamaño máximo permitido para subir es :size.|Los tipos de archivo aceptados son :types. El tamaño máximo permitido es :size.', 'filetypes_size_help' => 'El tamaño máximo permitido para subir es :size.', 'image_filetypes_help' => 'Los tipos de archivo aceptados son jpg, webp, png, gif y svg. El tamaño máximo permitido es :size.', @@ -163,10 +164,10 @@ return [ 'import_this_file' => 'Mapear campos y procesar este archivo', 'importing' => 'Importando', 'importing_help' => 'Puede importar activos, accesorios, licencias, componentes, consumibles y usuarios a través del archivo CSV.

El CSV debe estar delimitado por comas y formateado con encabezados que coincidan con los del CSVs de muestra en la documentación.', - 'import-history' => 'Importar Historial', + 'import-history' => 'Importar historial', 'asset_maintenance' => 'Mantenimiento de Activos', 'asset_maintenance_report' => 'Informe mantenimiento de activos', - 'asset_maintenances' => 'Mantenimiento de Activos', + 'asset_maintenances' => 'Mantenimiento de activos', 'item' => 'Articulo', 'item_name' => 'Nombre del artículo', 'import_file' => 'importar archivo CSV', @@ -212,23 +213,23 @@ return [ 'new' => 'nuevo!', 'no_depreciation' => 'Sin Depreciación', 'no_results' => 'No hay resultados.', - 'no' => 'Nu', + 'no' => 'No', 'notes' => 'Notas', - 'order_number' => 'Orden Número', + 'order_number' => 'Número de orden', 'only_deleted' => 'Sólo activos eliminados', 'page_menu' => 'Mostrando _MENU_ objetos', 'pagination_info' => 'Mostrando _START_ a _END_ de _TOTAL_ elementos', - 'pending' => 'Equipos Pendiente', + 'pending' => 'Pendientes', 'people' => 'Personas', 'per_page' => 'Resultados por página', 'previous' => 'Anterior', 'processing' => 'Procesando', 'profile' => 'Tu perfil', 'purchase_cost' => 'Precio de compra', - 'purchase_date' => 'Fecha de Compra', + 'purchase_date' => 'Fecha de compra', 'qty' => 'Cantidad', 'quantity' => 'Cantidad', - 'quantity_minimum' => 'Tienes :count artículos por debajo o casi por debajo de los niveles mínimos de cantidad', + 'quantity_minimum' => 'Tiene :count artículos por debajo o casi por debajo de los niveles mínimos de cantidad', 'quickscan_checkin' => 'Escaneo rápido', 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Listo para asignar', @@ -251,7 +252,7 @@ return [ 'select' => 'Seleccionar', 'select_all' => 'Seleccionar todo', 'search' => 'Buscar', - 'select_category' => 'Seleccione una Categoría', + 'select_category' => 'Seleccione una categoría', 'select_datasource' => 'Seleccione un datoscópico', 'select_department' => 'Seleccione un departamento', 'select_depreciation' => 'Seleccione un tipo de depreciación', @@ -262,14 +263,14 @@ return [ 'select_user' => 'Seleccione un usuario', 'select_date' => 'Seleccione fecha (AAA-MM-DD)', 'select_statuslabel' => 'Seleccionar estado', - 'select_company' => 'Seleccionar Compañía', - 'select_asset' => 'Seleccionar recurso', + 'select_company' => 'Seleccione una empresa', + 'select_asset' => 'Seleccionar activo', 'settings' => 'Ajustes', 'show_deleted' => 'Mostrar eliminados', 'show_current' => 'Mostrar Actual', 'sign_in' => 'Iniciar sesión', 'signature' => 'Firma', - 'signed_off_by' => 'Cerrado por', + 'signed_off_by' => 'Firmado por', 'skin' => 'Piel', 'webhook_msg_note' => 'Una notificación se enviará a través de webhook', 'webhook_test_msg' => '¡Oh hai! ¡Parece que tu integración :app con Snipe-IT está funcionando!', @@ -308,12 +309,12 @@ return [ 'users' => 'Usuarios', 'viewall' => 'Ver todo', 'viewassets' => 'Ver elementos asignados', - 'viewassetsfor' => 'Ver contenidos de :name', + 'viewassetsfor' => 'Ver activos para :name', 'website' => 'Sitio web', 'welcome' => 'Bienvenido, :name', 'years' => 'años', 'yes' => 'Sí', - 'zip' => 'Zip', + 'zip' => 'Código postal', 'noimage' => 'No se ha cargado o no se ha encontrado ninguna imagen.', 'file_does_not_exist' => 'El archivo solicitado no existe en el servidor.', 'file_upload_success' => '¡Archivo cargado exitosamente!', @@ -321,10 +322,10 @@ return [ 'token_expired' => 'Su sesión ha caducado. Por favor, inténtelo de nuevo.', 'login_enabled' => 'Inicio de sesión activado', 'audit_due' => 'Vence la auditoría', - 'audit_due_days' => 'Activos vencidos para auditoría dentro de :days Día|Activos vencidos para auditoría dentro de :days Días', - 'checkin_due' => 'Vence por Checkin', - 'checkin_overdue' => 'Atrasado para Checkin', - 'checkin_due_days' => 'Activos vencidos por cheque dentro de :days día|Activos vencidos por cheque dentro de :days días', + 'audit_due_days' => 'Activos pendientes para auditoría dentro de :days día|Activos pendientes para auditoría dentro de :days días', + 'checkin_due' => 'Pendiente por devolver', + 'checkin_overdue' => 'Atrasado por devolver', + 'checkin_due_days' => 'Activos que deben ser devueltos dentro de :days día|Activos que deben ser devueltos dentro de :days días', 'audit_overdue' => 'Atrasado para la auditoría', 'accept' => 'Aceptar :asset', 'i_accept' => 'Acepto', @@ -336,7 +337,7 @@ return [ 'hide_help' => 'Ocultar ayuda', 'view_all' => 'ver todos', 'hide_deleted' => 'Ocultar eliminados', - 'email' => 'Email', + 'email' => 'Correo electrónico', 'do_not_change' => 'No cambiar', 'bug_report' => 'Reportar un error', 'user_manual' => 'Manual del usuario', @@ -358,9 +359,9 @@ return [ 'reminder_checked_out_items' => 'Este es un recordatorio de los elementos que se te han comprobado actualmente. Si usted siente que esta lista es incorrecta (falta algo o algo que usted cree que nunca ha recibido), por favor envíe un correo electrónico a :reply_to_name a :reply_to_address.', 'changed' => 'Cambiado', 'to' => 'A', - 'report_fields_info' => '

Seleccione los campos que desea incluir en su informe personalizado y haga clic en Generar. El archivo (custom-asset-report-YYYY-mm-dd.csv) se descargará automáticamente, y puede abrirlo en Excel.

+ 'report_fields_info' => '

Seleccione los campos que desea incluir en su informe personalizado y haga clic en Generar. El archivo (custom-asset-report-YYYY-mm-dd.csv) se descargará automáticamente y puede abrirlo en Excel.

Si desea exportar sólo ciertos activos, utilice las siguientes opciones para afinar sus resultados.

', - 'range' => 'Range', + 'range' => 'Rango', 'bom_remark' => 'Añadir un BOM (signo de orden de byte) a este CSV', 'improvements' => 'Mejoras', 'information' => 'Información', @@ -374,13 +375,13 @@ return [ 'license_serial' => 'Clave de Serial/Producto', 'invalid_category' => 'Categoría no válida o ausente', 'invalid_item_category_single' => 'Falta o no válida :type categoría. Por favor actualiza la categoría de este :type para incluir una categoría válida antes de salir.', - 'dashboard_info' => 'Este es tu panel de control. Hay muchos parecidos, pero este es el tuyo.', + 'dashboard_info' => 'Este es su panel de control. Hay muchos similares, pero este es suyo.', '60_percent_warning' => '60% completo (advertencia)', - 'dashboard_empty' => 'Parece que aún no has añadido nada, así que no tenemos nada impresionante que mostrar. ¡Comienza añadiendo algunos activos, accesorios, consumibles o licencias ahora!', - 'new_asset' => 'Nuevo recurso', - 'new_license' => 'Nueva Licencia', + 'dashboard_empty' => 'Parece que aún no ha añadido nada, así que no tenemos nada impresionante que mostrar. ¡Comience añadiendo algunos activos, accesorios, consumibles o licencias ahora!', + 'new_asset' => 'Nuevo activo', + 'new_license' => 'Nueva licencia', 'new_accessory' => 'Nuevo accesorio', - 'new_consumable' => 'Nuevo Consumible', + 'new_consumable' => 'Nuevo consumible', 'collapse' => 'Colapso', 'assigned' => 'Asignado', 'asset_count' => 'Cantidad de activos', @@ -396,16 +397,16 @@ return [ 'notification_info' => 'Info', 'asset_information' => 'Información del recurso', 'model_name' => 'Nombre del modelo', - 'asset_name' => 'Nombre del Activo', + 'asset_name' => 'Nombre del activo', 'consumable_information' => 'Información Consumible:', 'consumable_name' => 'Nombre del Consumible:', 'accessory_information' => 'Información del accesorio:', 'accessory_name' => 'Nombre de accesorio:', 'clone_item' => 'Clonar objeto', - 'checkout_tooltip' => 'Revisa este elemento', + 'checkout_tooltip' => 'Asignar este elemento', 'checkin_tooltip' => 'Devuelva este elemento para que esté disponible para resignar, borrar, etc.', - 'checkout_user_tooltip' => 'Revisa este elemento a un usuario', - 'checkin_to_diff_location' => 'Puede optar por registrar este activo en una ubicación distinta a la predeterminada :default_location, si es que existe una configurada', + 'checkout_user_tooltip' => 'Asignar este elemento a un usuario', + 'checkin_to_diff_location' => 'Puede optar por asignar este activo a una ubicación distinta a la predeterminada :default_location, si es que existe una configurada', 'maintenance_mode' => 'El servicio no está disponible temporalmente para actualizaciones del sistema. Por favor, vuelva más tarde.', 'maintenance_mode_title' => 'Sistema temporalmente no disponible', 'ldap_import' => 'La contraseña del usuario no debe ser administrada por LDAP. (Esto le permite enviar solicitudes de contraseña olvidadas.)', @@ -522,7 +523,7 @@ return [ 'action_source' => 'Fuente de acción', 'or' => 'o', 'url' => 'URL', - 'edit_fieldset' => 'Editar campos y opciones de campos', + 'edit_fieldset' => 'Editar campos y opciones de grupos de campos', 'permission_denied_superuser_demo' => 'Permiso denegado. No puede actualizar la información de usuario para superadministradores en la demo.', 'pwd_reset_not_sent' => 'El usuario no está activado, está sincronizado con LDAP o no tiene una dirección de correo electrónico', 'error_sending_email' => 'Error al enviar email', @@ -537,7 +538,7 @@ return [ 'partial' => 'Eliminado :success_count :object_type, pero :error_count :object_type no pudo ser eliminado', ], ], - 'no_requestable' => 'No hay activos o modelos de activos solicitables.', + 'no_requestable' => 'No hay activos o modelos de activos que puedan solicitarse.', 'countable' => [ 'accessories' => ':count Accesorio|:count Accesorios', diff --git a/resources/lang/es-CO/help.php b/resources/lang/es-CO/help.php index f9596b8d9..7b65497a8 100644 --- a/resources/lang/es-CO/help.php +++ b/resources/lang/es-CO/help.php @@ -29,7 +29,7 @@ return [ 'consumables' => 'Los consumibles son cualquier cosa comprada que se usará con el tiempo. Por ejemplo, tinta de impresora o papel copiador.', - 'depreciations' => 'Puede configurar las depreciaciones de activos para depreciar activos basados en una depreciación lineal.', + 'depreciations' => 'Puede configurar la depreciación de activos usando un método de línea recta.', 'empty_file' => 'El importador detecta que este archivo está vacío.' ]; diff --git a/resources/lang/es-ES/account/general.php b/resources/lang/es-ES/account/general.php index 4f9b322a0..3303787c2 100644 --- a/resources/lang/es-ES/account/general.php +++ b/resources/lang/es-ES/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Claves API personales', - 'api_key_warning' => 'Al generar un token API, asegúrate de copiarlo inmediatamente ya que - no será visible de nuevo.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'La url base de tu API es:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'Los tokens de la API están establecidos para expirar en:', - 'api_reference' => 'Por favor, revise la referencia API para - encontrar endpoints específicos de la API y documentación adicional de la API.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Cuenta actualizada exitosamente', ); diff --git a/resources/lang/es-ES/admin/accessories/general.php b/resources/lang/es-ES/admin/accessories/general.php index 9103727a1..02beea6a0 100644 --- a/resources/lang/es-ES/admin/accessories/general.php +++ b/resources/lang/es-ES/admin/accessories/general.php @@ -7,15 +7,15 @@ return array( 'checkin' => 'Checkin Accesorio', 'create' => 'Crear Accesorio', 'edit' => 'Editar Accesorio', - 'eula_text' => 'Términos y condiciones de la categoría', - 'eula_text_help' => 'Este campo permite personalizar los términos y condiciones para tipos específicos de activos. Si solo tiene unos términos y condiciones para todos sus activos, puede seleccionar la siguiente opción para usar el valor por defecto.', + 'eula_text' => 'Acuerdo de uso de la categoría', + 'eula_text_help' => 'Este campo permite personalizar los acuerdos de uso para tipos específicos de activos. Si solo tiene un acuerdo de uso para todos sus activos, puede seleccionar la siguiente opción para usar el valor por predeterminado.', 'require_acceptance' => 'Pedir a los usuarios confirmación de aceptación de los elementos en esta categoría.', - 'no_default_eula' => 'No se encontraron términos y condiciones por defecto. Agregue unos en Configuración.', + 'no_default_eula' => 'No se encontró el acuerdo de uso predeterminado. Agregue unos en Configuración.', 'total' => 'Total ', 'remaining' => 'Disponibles', 'update' => 'Actualizar Accesorio', - 'use_default_eula' => 'En su lugar, use los términos y condiciones por defecto.', - 'use_default_eula_disabled' => 'En su lugar, use los términos y condiciones por defecto. No están configurados términos y condiciones defecto. Por favor agregue unos en Configuración.', + 'use_default_eula' => 'En su lugar, el acuerdo de uso predeterminado.', + 'use_default_eula_disabled' => 'En su lugar, use el acuerdo de uso predeterminado. No está configurado el acuerdo de uso predeterminado. Por favor agregue uno en Configuración.', 'clone' => 'Clonar accesorio', 'delete_disabled' => 'Este accesorio no se puede eliminar aún porque algunos elementos todavía están retirados.', diff --git a/resources/lang/es-ES/admin/accessories/table.php b/resources/lang/es-ES/admin/accessories/table.php index d88cf1b98..1a2d33e1e 100644 --- a/resources/lang/es-ES/admin/accessories/table.php +++ b/resources/lang/es-ES/admin/accessories/table.php @@ -2,7 +2,7 @@ return array( 'dl_csv' => 'Descargar CSV', - 'eula_text' => 'Términos y condiciones', + 'eula_text' => 'Acuerdo de uso', 'id' => 'ID', 'require_acceptance' => 'Aceptación', 'title' => 'Nombre accesorio', diff --git a/resources/lang/es-ES/admin/asset_maintenances/general.php b/resources/lang/es-ES/admin/asset_maintenances/general.php index 67159bda9..9a495cd78 100644 --- a/resources/lang/es-ES/admin/asset_maintenances/general.php +++ b/resources/lang/es-ES/admin/asset_maintenances/general.php @@ -1,7 +1,7 @@ 'Mantenimientos de Equipo', + 'asset_maintenances' => 'Mantenimiento de activos', 'edit' => 'Editar Mantenimiento de Equipo', 'delete' => 'Eliminar Mantenimiento de Equipo', 'view' => 'Ver Detalle de Mantenimiento de Equipo', diff --git a/resources/lang/es-ES/admin/asset_maintenances/table.php b/resources/lang/es-ES/admin/asset_maintenances/table.php index 473e3ef34..adabb3ff6 100644 --- a/resources/lang/es-ES/admin/asset_maintenances/table.php +++ b/resources/lang/es-ES/admin/asset_maintenances/table.php @@ -2,7 +2,7 @@ return [ 'title' => 'Mantenimiento de Equipo', - 'asset_name' => 'Nombre del Equipo', + 'asset_name' => 'Nombre del activo', 'is_warranty' => 'Garantía', 'dl_csv' => 'Descargar CSV', ]; diff --git a/resources/lang/es-ES/admin/categories/general.php b/resources/lang/es-ES/admin/categories/general.php index 795b400f0..0a94acd23 100644 --- a/resources/lang/es-ES/admin/categories/general.php +++ b/resources/lang/es-ES/admin/categories/general.php @@ -8,18 +8,18 @@ return array( 'clone' => 'Clonar categoría', 'create' => 'Crear categoría', 'edit' => 'Editar Categoría', - 'email_will_be_sent_due_to_global_eula' => 'Se enviará un correo electrónico al usuario porque se están utilizando los términos y condiciones globales.', - 'email_will_be_sent_due_to_category_eula' => 'Se enviará un correo electrónico al usuario porque se han establecido términos y condiciones para esta categoría.', - 'eula_text' => 'Términos y condiciones de la categoría', - 'eula_text_help' => 'Este campo permite personalizar los términos y condiciones para tipos específicos de activos. Si solo tiene unos términos y condiciones para todos sus activos, puede seleccionar la siguiente opción para usar la definición por defecto.', + 'email_will_be_sent_due_to_global_eula' => 'Se enviará un correo electrónico al usuario porque se está utilizando el acuerdo de uso global.', + 'email_will_be_sent_due_to_category_eula' => 'Se enviará un correo electrónico al usuario porque se ha establecido un acuerdo de uso para esta categoría.', + 'eula_text' => 'Acuerdo de uso de la categoría', + 'eula_text_help' => 'Este campo permite personalizar el acuerdo de uso para tipos específicos de activos. Si solo tiene un acuerdo de uso para todos sus activos, puede seleccionar la siguiente opción para usar la definición predeterminada.', 'name' => 'Nombre de la categoría', 'require_acceptance' => 'Requerir a los usuarios que confirmen la aceptación de los elementos en esta categoría.', 'required_acceptance' => 'Este usuario recibirá un correo con un enlace para confirmar la aceptación de este elemento.', - 'required_eula' => 'Se enviará un correo electrónico a este usuario con una copia de los términos y condiciones', - 'no_default_eula' => 'No se encontró definición de los términos y condiciones por defecto. Agregue unos en Configuración.', + 'required_eula' => 'Se enviará un correo electrónico a este usuario con una copia del acuerdo de uso', + 'no_default_eula' => 'No se encontró una definición del acuerdo de uso por defecto. Agregue uno en Configuración.', 'update' => 'Actualizar categoría', - 'use_default_eula' => 'En su lugar, use los términos y condiciones por defecto.', - 'use_default_eula_disabled' => 'En su lugar, use los términos y condicione por defecto. No se han establecido términos y condiciones por defecto. Por favor agregue unos en Configuración.', - 'use_default_eula_column' => 'Usar los términos y condiciones por defecto', + 'use_default_eula' => 'En su lugar, utilice el acuerdo de uso predeterminado.', + 'use_default_eula_disabled' => 'En su lugar, utilice el acuerdo de uso predeterminado. No se ha establecido el acuerdo de uso predeterminado. Por favor agregue uno en Configuración.', + 'use_default_eula_column' => 'Utilizar el acuerdo de uso predeterminado', ); diff --git a/resources/lang/es-ES/admin/categories/table.php b/resources/lang/es-ES/admin/categories/table.php index ed2f7038d..e3bb551e9 100644 --- a/resources/lang/es-ES/admin/categories/table.php +++ b/resources/lang/es-ES/admin/categories/table.php @@ -1,7 +1,7 @@ 'Términos y condiciones', + 'eula_text' => 'Acuerdo de uso', 'id' => 'ID', 'parent' => 'Padre', 'require_acceptance' => 'Aceptación', diff --git a/resources/lang/es-ES/admin/companies/general.php b/resources/lang/es-ES/admin/companies/general.php index c8fea9b67..603f03ee5 100644 --- a/resources/lang/es-ES/admin/companies/general.php +++ b/resources/lang/es-ES/admin/companies/general.php @@ -1,7 +1,7 @@ 'Seleccionar compañía', + 'select_company' => 'Seleccione una empresa', 'about_companies' => 'Acerca de las empresas', 'about_companies_description' => ' Puede utilizar las empresas como un simple campo informativo, o puede utilizarlas para restringir la visibilidad y la disponibilidad de los activos a los usuarios con una empresa específica, esto se hace habilitando la opción de "Soporte completo a varias empresas" en la "Configuración de administrador"', ]; diff --git a/resources/lang/es-ES/admin/components/general.php b/resources/lang/es-ES/admin/components/general.php index d715741aa..d047e56c1 100644 --- a/resources/lang/es-ES/admin/components/general.php +++ b/resources/lang/es-ES/admin/components/general.php @@ -8,9 +8,9 @@ return array( 'create' => 'Crear componente', 'edit' => 'Editar componente', 'date' => 'Fecha de compra', - 'order' => 'Nùmero de orden', + 'order' => 'Número de orden', 'remaining' => 'Restante', 'total' => 'Total', 'update' => 'Actualizar Componente', - 'checkin_limit' => 'La cantidad de checkins debe ser igual o menor que :assigned_qty' + 'checkin_limit' => 'La cantidad devuelta debe ser igual o menor que :assigned_qty' ); diff --git a/resources/lang/es-ES/admin/consumables/message.php b/resources/lang/es-ES/admin/consumables/message.php index 66bfc470b..9f7f65eab 100644 --- a/resources/lang/es-ES/admin/consumables/message.php +++ b/resources/lang/es-ES/admin/consumables/message.php @@ -10,25 +10,25 @@ return array( ), 'update' => array( - 'error' => 'El consumible no fue subido, por favor intente nuevamente', + 'error' => 'El consumible no fue actualizado, por favor, inténtalo de nuevo', 'success' => 'El consumible fue subido con éxito.' ), 'delete' => array( 'confirm' => '¿Está seguro que desea eliminar este consumible?', - 'error' => 'Hubo un error al borrar este consumible. Por favor intente nuevamente.', + 'error' => 'Hubo un problema al eliminar el consumible. Por favor inténtelo de nuevo.', 'success' => 'El consumible ha sido eliminado correctamente.' ), 'checkout' => array( - 'error' => 'Consumible no fue retirado, por favor, inténtelo de nuevo', + 'error' => 'El consumible no fue asignado, por favor inténtelo de nuevo', 'success' => 'Consumible fue retirado satisfactoriamente.', 'user_does_not_exist' => 'Este usuario es inválido . Inténtalo de nuevo.', 'unavailable' => 'No hay suficientes consumibles para este pago. Por favor, compruebe la cantidad restante. ', ), 'checkin' => array( - 'error' => 'Consumible no fue ingresado, por favor, inténtelo de nuevo', + 'error' => 'Consumible no fue devuelto, por favor inténtelo de nuevo', 'success' => 'Consumible fue ingresado satisfactoriamente.', 'user_does_not_exist' => 'Este usuario es inválido . Inténtalo de nuevo.' ) diff --git a/resources/lang/es-ES/admin/custom_fields/general.php b/resources/lang/es-ES/admin/custom_fields/general.php index 7f69c907d..c11f6e339 100644 --- a/resources/lang/es-ES/admin/custom_fields/general.php +++ b/resources/lang/es-ES/admin/custom_fields/general.php @@ -4,16 +4,16 @@ return [ 'custom_fields' => 'Campos personalizados', 'manage' => 'Administrar', 'field' => 'Campo', - 'about_fieldsets_title' => 'Acerca de los campos personalizados', - 'about_fieldsets_text' => 'Los grupos de campos personalizados te permiten agrupar campos personalizados que se reutilizan frecuentemente para determinados modelos de activos.', + 'about_fieldsets_title' => 'Acerca de los grupos de campos', + 'about_fieldsets_text' => 'Los grupos de campos le permiten agrupar campos personalizados que se reutilizan frecuentemente para determinados modelos de activos.', 'custom_format' => 'Expresión regular personalizada...', 'encrypt_field' => 'Encriptar el valor de este campo en la base de datos', 'encrypt_field_help' => 'CUIDADO: Encriptar un campo hace que no se pueda buscar por él.', 'encrypted' => 'Encriptado', - 'fieldset' => 'Grupo de campos personalizados', - 'qty_fields' => 'Campos de Cantidad', - 'fieldsets' => 'Grupo de campos personalizados', - 'fieldset_name' => 'Nombre del grupo', + 'fieldset' => 'Grupo de campos', + 'qty_fields' => 'Campos de cantidad', + 'fieldsets' => 'Grupo de campos', + 'fieldset_name' => 'Nombre del grupo de campos', 'field_name' => 'Nombre del campo', 'field_values' => 'Valores de los Campos', 'field_values_help' => 'Agregar opciones seleccionables, una por linea. Lineas en blanco ademas de la primera, serán ignoradas.', @@ -28,7 +28,7 @@ return [ 'order' => 'Orden', 'create_fieldset' => 'Nuevo grupo de campos', 'update_fieldset' => 'Actualizar grupo de campos', - 'fieldset_does_not_exist' => 'Grupo de campos :id no existe', + 'fieldset_does_not_exist' => 'El grupo de campos :id no existe', 'fieldset_updated' => 'Grupo de campos actualizado', 'create_fieldset_title' => 'Crear nuevo grupo de campos', 'create_field' => 'Nuevo campo personalizado', diff --git a/resources/lang/es-ES/admin/departments/table.php b/resources/lang/es-ES/admin/departments/table.php index 05abf227d..b24a16d3a 100644 --- a/resources/lang/es-ES/admin/departments/table.php +++ b/resources/lang/es-ES/admin/departments/table.php @@ -4,7 +4,7 @@ return array( 'id' => 'CARNÉ DE IDENTIDAD', 'name' => 'Nombre de Departamento', - 'manager' => 'Gerente', + 'manager' => 'Supervisor', 'location' => 'Ubicación', 'create' => 'Crear departamento', 'update' => 'Departamento de actualización', diff --git a/resources/lang/es-ES/admin/depreciations/general.php b/resources/lang/es-ES/admin/depreciations/general.php index c7a264b34..8cbf9c1b9 100644 --- a/resources/lang/es-ES/admin/depreciations/general.php +++ b/resources/lang/es-ES/admin/depreciations/general.php @@ -1,11 +1,11 @@ 'Info Amortización Equipos', - 'about_depreciations' => 'Puedes configurar clases de amortización para amortizar equipos de forma lineal.', + 'about_asset_depreciations' => 'Sobre amortización de activos', + 'about_depreciations' => 'Puede configurar la depreciación de activos usando un método de línea recta.', 'asset_depreciations' => 'Amortizaciones', - 'create' => 'Crear Amortización', - 'depreciation_name' => 'Nombre Amortización', + 'create' => 'Crear amortización', + 'depreciation_name' => 'Nombre amortización', 'depreciation_min' => 'Valor mínimo de amortización', 'number_of_months' => 'Meses', 'update' => 'Actualizar Amortización', diff --git a/resources/lang/es-ES/admin/hardware/form.php b/resources/lang/es-ES/admin/hardware/form.php index 02827c1fd..253fcddbb 100644 --- a/resources/lang/es-ES/admin/hardware/form.php +++ b/resources/lang/es-ES/admin/hardware/form.php @@ -19,12 +19,12 @@ return [ 'checkout_to' => 'Asignar a', 'cost' => 'Precio Compra', 'create' => 'Crear Equipo', - 'date' => 'Fecha Compra', + 'date' => 'Fecha de compra', 'depreciation' => 'Depreciación', 'depreciates_on' => 'Se deprecia en', - 'default_location' => 'Ubicación Predeterminada', + 'default_location' => 'Ubicación predeterminada', 'default_location_phone' => 'Teléfono de ubicación por defecto', - 'eol_date' => 'Fecha EOL', + 'eol_date' => 'Fecha fin de soporte (EOL)', 'eol_rate' => 'Tasa de EOL', 'expected_checkin' => 'Fecha esperada de devolución', 'expires' => 'Expira', @@ -34,15 +34,15 @@ return [ 'manufacturer' => 'Fabricante', 'model' => 'Modelo', 'months' => 'meses', - 'name' => 'Equipo', + 'name' => 'Nombre del activo', 'notes' => 'Notas', - 'order' => 'Nº Pedido', + 'order' => 'Número de orden', 'qr' => 'Código QR', 'requestable' => 'Los usuarios pueden solicitar este elemento', 'redirect_to_all' => 'Return to all :type', 'redirect_to_type' => 'Ir a :type', 'redirect_to_checked_out_to' => 'Go to Checked Out to', - 'select_statustype' => 'Selecciona estado', + 'select_statustype' => 'Seleccione un tipo de estado', 'serial' => 'N. Serie', 'status' => 'Estado', 'tag' => 'Etiqueta', diff --git a/resources/lang/es-ES/admin/hardware/general.php b/resources/lang/es-ES/admin/hardware/general.php index 3219aa17c..86b238384 100644 --- a/resources/lang/es-ES/admin/hardware/general.php +++ b/resources/lang/es-ES/admin/hardware/general.php @@ -6,14 +6,14 @@ return [ 'archived' => 'Archivado', 'asset' => 'Equipo', 'bulk_checkout' => 'Activos Asignados', - 'bulk_checkin' => 'Quitar Equipo', - 'checkin' => 'Quitar Equipo', + 'bulk_checkin' => 'Devolver activos', + 'checkin' => 'Devolver activo', 'checkout' => 'Activo de pago', - 'clone' => 'Clonar Equipo', + 'clone' => 'Clonar activo', 'deployable' => 'Utilizable', 'deleted' => 'Este activo fue eliminado.', 'delete_confirm' => '¿Está seguro de que desea eliminar este recurso?', - 'edit' => 'Editar Equipo', + 'edit' => 'Editar activo', 'model_deleted' => 'Este Modelo de activo fue eliminado. Debes restaurar este modelo antes de poder restaurar el Activo.', 'model_invalid' => 'Este modelo para este activo es inválido.', 'model_invalid_fix' => 'The asset must be updated use a valid asset model before attempting to check it in or out, or to audit it.', @@ -25,7 +25,7 @@ return [ 'pending' => 'Pendiente', 'undeployable' => 'No utilizable', 'undeployable_tooltip' => 'Este activo tiene una etiqueta de estado que es no utilizable y no puede ser asignado en este momento.', - 'view' => 'Ver Equipo', + 'view' => 'Ver activo', 'csv_error' => 'Tiene un error en su archivo CSV:', 'import_text' => '

Cargue un archivo CSV que contenga el historial de activos. Los activos y los usuarios DEBEN existir ya en el sistema, o serán omitidos. La importación del historial busca activos que coincidan con la etiqueta de activo. Intentaremos encontrar un usuario usando el nombre del usuario que proporcione y los criterios que seleccione a continuación. Si no selecciona ningún criterio, el sistema simplemente intentará usar el formato de nombre de usuario configurado en Admin > Opciones Generales.

Los campos incluidos en el CSV deben coincidir con los encabezados: Asset Tag, Name, Checkout Date, Checkin Date. Cualquier campo adicional será ignorado.

Checkin Date(Fecha de Devolución): dejar en blanco o usar fechas futuras asignará los ítems al usuario asociado. Excluir la columna Checkin Date creará una fecha de devolución con la fecha de hoy.

', 'csv_import_match_f-l' => 'Intenta emparejar usuarios con formato nombre.lastname (jane.smith)', diff --git a/resources/lang/es-ES/admin/hardware/message.php b/resources/lang/es-ES/admin/hardware/message.php index 7dab2853e..4b0e1ad0c 100644 --- a/resources/lang/es-ES/admin/hardware/message.php +++ b/resources/lang/es-ES/admin/hardware/message.php @@ -12,7 +12,7 @@ return [ 'warning_audit_date_mismatch' => 'La próxima fecha de auditoría de este activo (:next_audit_date) es anterior a la última fecha de auditoría (:last_audit_date). Por favor, actualice la próxima fecha de auditoría.', 'create' => [ - 'error' => 'Equipo no creado, intentalo de nuevo. :(', + 'error' => 'El activo no fue creado, por favor, inténtelo de nuevo. :(', 'success' => 'Equipo creado. :)', 'success_linked' => 'Activo con etiqueta :tag creado con éxito. Haga clic aquí para ver.', ], @@ -71,7 +71,7 @@ return [ ], 'checkout' => [ - 'error' => 'Equipo no asignado, intentalo de nuevo', + 'error' => 'El activo no fue asignado, por favor inténtelo de nuevo', 'success' => 'Equipo asignado.', 'user_does_not_exist' => 'Este usuario no es correcto. Intentalo de nuevo.', 'not_available' => '¡Ese artículo no está disponible para retirada!', @@ -79,10 +79,10 @@ return [ ], 'checkin' => [ - 'error' => 'No se ha quitado el equipo. Intentalo de nuevo.', - 'success' => 'Equipo quitado correctamente.', - 'user_does_not_exist' => 'Este usuario no es correcto. Intentalo de nuevo.', - 'already_checked_in' => 'Ese activo ya se quito.', + 'error' => 'El equipo no se pudo devolver, por favor inténtelo de nuevo', + 'success' => 'El activo fue devuelto exitosamente.', + 'user_does_not_exist' => 'Es usuario no es correcto, por favor inténtelo de nuevo.', + 'already_checked_in' => 'El equipo ya ha sido devuelto.', ], diff --git a/resources/lang/es-ES/admin/hardware/table.php b/resources/lang/es-ES/admin/hardware/table.php index 5372f0930..ed58b2088 100644 --- a/resources/lang/es-ES/admin/hardware/table.php +++ b/resources/lang/es-ES/admin/hardware/table.php @@ -15,7 +15,7 @@ return [ 'dl_csv' => 'Descargar CSV', 'eol' => 'EOL', 'id' => 'ID', - 'last_checkin_date' => 'Last Checkin Date', + 'last_checkin_date' => 'Última fecha de devolución', 'location' => 'Localización', 'purchase_cost' => 'Costo', 'purchase_date' => 'Comprado', diff --git a/resources/lang/es-ES/admin/licenses/form.php b/resources/lang/es-ES/admin/licenses/form.php index 3724e53db..b1d1d180d 100644 --- a/resources/lang/es-ES/admin/licenses/form.php +++ b/resources/lang/es-ES/admin/licenses/form.php @@ -3,8 +3,8 @@ return array( 'asset' => 'Equipo', - 'checkin' => 'Quita', - 'create' => 'Nueva Licencia', + 'checkin' => 'Devolver', + 'create' => 'Crear licencia', 'expiration' => 'Fecha de vencimiento', 'license_key' => 'Clave de producto', 'maintained' => 'Mantenido', @@ -18,5 +18,5 @@ return array( 'to_email' => 'Registrado a Email', 'to_name' => 'Registrado a Nombre', 'update' => 'Actualizar Licencia', - 'checkout_help' => 'Puedes asignar la licencia a un equipo a a un usuario. Puedes seleccionarlos a ambos, pero el dueño de la licencia debe ser el mismo usuario al que asignes el equipo.' + 'checkout_help' => 'Debe asignar una licencia a un activo de hardware o a una persona. Puede seleccionar ambos, pero el propietario del activo debe coincidir con la persona a la que está asignado el activo.' ); diff --git a/resources/lang/es-ES/admin/licenses/message.php b/resources/lang/es-ES/admin/licenses/message.php index aae187177..47deb5732 100644 --- a/resources/lang/es-ES/admin/licenses/message.php +++ b/resources/lang/es-ES/admin/licenses/message.php @@ -47,7 +47,7 @@ return array( ), 'checkin' => array( - 'error' => 'No se ha quitado el equipo. Intentalo de nuevo.', + 'error' => 'Hubo un problema devolviendo la licencia. Por favor, inténtalo de nuevo.', 'success' => 'Equipo quitado correctamente.' ), diff --git a/resources/lang/es-ES/admin/licenses/table.php b/resources/lang/es-ES/admin/licenses/table.php index 7dda8f145..2d5286e57 100644 --- a/resources/lang/es-ES/admin/licenses/table.php +++ b/resources/lang/es-ES/admin/licenses/table.php @@ -6,9 +6,9 @@ return array( 'checkout' => 'Quita/Asigna', 'deleted_at' => 'Eliminado el', 'id' => 'ID', - 'license_email' => 'Email', + 'license_email' => 'Email de licencia', 'license_name' => 'Licenciado a', - 'purchase_date' => 'Fecha Compra', + 'purchase_date' => 'Fecha de compra', 'purchased' => 'Comprada', 'seats' => 'Instalaciones', 'hardware' => 'Equipo', diff --git a/resources/lang/es-ES/admin/locations/message.php b/resources/lang/es-ES/admin/locations/message.php index d9757b507..2ddaee7a4 100644 --- a/resources/lang/es-ES/admin/locations/message.php +++ b/resources/lang/es-ES/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Localización no existente.', - 'assoc_users' => 'Esta localización está asignada al menos a un usuario y no puede ser eliminada. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Esta ubicacion se encuentra actualmente asociada con por lo menos un activo y no puede ser eliminada. Por favor, actualice sus activos para no referenciar esta ubicacion e intentelo de nuevo. ', 'assoc_child_loc' => 'Esta ubicacion actualmente esta asociada con al menos una ubicacion hija y no puede ser eliminada. Por favor, actualice sus ubicaciones para no referenciar esta ubicacion e intentelo de nuevo. ', 'assigned_assets' => 'Activos asignados', diff --git a/resources/lang/es-ES/admin/locations/table.php b/resources/lang/es-ES/admin/locations/table.php index 04e1f44a6..cc9738663 100644 --- a/resources/lang/es-ES/admin/locations/table.php +++ b/resources/lang/es-ES/admin/locations/table.php @@ -16,9 +16,9 @@ return [ 'name' => 'Nombre Localización', 'address' => 'Dirección', 'address2' => 'Dirección (línea 2)', - 'zip' => 'Códio Postal', + 'zip' => 'Código postal', 'locations' => 'Localizaciones', - 'parent' => 'Padre', + 'parent' => 'Ubicación padre', 'currency' => 'Divisa de la Localización', 'ldap_ou' => 'Búsqueda LDAP OU', 'user_name' => 'Nombre de usuario', @@ -32,7 +32,7 @@ return [ 'asset_serial' => 'Número de serie', 'asset_location' => 'Ubicación', 'asset_checked_out' => 'Asignado', - 'asset_expected_checkin' => 'Fecha Esperada de Devolución', + 'asset_expected_checkin' => 'Fecha esperada de devolución', 'date' => 'Fecha:', 'phone' => 'Teléfono ubicación', 'signed_by_asset_auditor' => 'Firmado por (Juego de Acciones):', diff --git a/resources/lang/es-ES/admin/manufacturers/table.php b/resources/lang/es-ES/admin/manufacturers/table.php index 9e557e0f7..ed228e832 100644 --- a/resources/lang/es-ES/admin/manufacturers/table.php +++ b/resources/lang/es-ES/admin/manufacturers/table.php @@ -10,7 +10,7 @@ return array( 'support_email' => 'Email de soporte', 'support_phone' => 'Teléfono de soporte', 'support_url' => 'URL de soporte', - 'warranty_lookup_url' => 'URL de Búsqueda de Garantía', + 'warranty_lookup_url' => 'URL de búsqueda de garantía', 'update' => 'Actualizar Fabricante', ); diff --git a/resources/lang/es-ES/admin/models/message.php b/resources/lang/es-ES/admin/models/message.php index 4bec701de..9eaea9f24 100644 --- a/resources/lang/es-ES/admin/models/message.php +++ b/resources/lang/es-ES/admin/models/message.php @@ -12,7 +12,7 @@ return array( 'create' => array( 'error' => 'Modelo no creado, Intentalo de nuevo.', 'success' => 'Modelo creado.', - 'duplicate_set' => 'Un modelo de activo con ese nombre, fabricante y número de modelo ya existe.', + 'duplicate_set' => 'Ya existe un modelo de equipo con el mismo nombre, fabricante y número de modelo.', ), 'update' => array( diff --git a/resources/lang/es-ES/admin/models/table.php b/resources/lang/es-ES/admin/models/table.php index 23298d575..1dd16b8e6 100644 --- a/resources/lang/es-ES/admin/models/table.php +++ b/resources/lang/es-ES/admin/models/table.php @@ -6,7 +6,7 @@ return array( 'created_at' => 'Creado el', 'eol' => 'EOL', 'modelnumber' => 'Modelo No.', - 'name' => 'Nombre Modelo', + 'name' => 'Nombre del modelo de activo', 'numassets' => 'Equipos', 'title' => 'Modelos Equipos', 'update' => 'Actualizar Modelo', diff --git a/resources/lang/es-ES/admin/settings/general.php b/resources/lang/es-ES/admin/settings/general.php index 7aabf94dc..e281796b5 100644 --- a/resources/lang/es-ES/admin/settings/general.php +++ b/resources/lang/es-ES/admin/settings/general.php @@ -46,11 +46,11 @@ return [ 'dashboard_message' => 'Mensajes del Panel', 'dashboard_message_help' => 'Este texto aparecerá en el panel para cualquiera que tenga permiso de ver el Panel.', 'default_currency' => 'Moneda Predeterminada', - 'default_eula_text' => 'Términos y condiciones por defecto', + 'default_eula_text' => 'Acuerdo de uso predeterminado', 'default_language' => 'Idioma predeterminado', - 'default_eula_help_text' => 'También puede asociar términos y condiciones personalizados a categorías específicas.', + 'default_eula_help_text' => 'También puede asociar acuerdos de uso personalizados a categorías específicas.', 'acceptance_note' => 'Añada una nota para su decisión (opcional)', - 'display_asset_name' => 'Mostrar Nombre Equipo', + 'display_asset_name' => 'Mostrar nombre del activo', 'display_checkout_date' => 'Mostrar fecha de asignación', 'display_eol' => 'Mostrar EOL', 'display_qr' => 'Mostrar Códigos QR', @@ -60,8 +60,8 @@ return [ 'alt_barcode_type' => 'Tipo de códigos de barras 1D', 'email_logo_size' => 'Los logotipos cuadrados en el correo electrónico se ven mejor. ', 'enabled' => 'Habilitado', - 'eula_settings' => 'Configuración de los términos y condiciones', - 'eula_markdown' => 'Estos términos y condiciones permiten markdown estilo Github.', + 'eula_settings' => 'Configuración de los acuerdos de uso', + 'eula_markdown' => 'Estos acuerdos de uso permiten markdown estilo Github.', 'favicon' => 'Favicon', 'favicon_format' => 'Los tipos de archivo aceptados son ico, png y gif. Otros formatos de imagen pueden no funcionar en todos los navegadores.', 'favicon_size' => 'Los Favicons deben ser imágenes cuadradas, 16x16 píxeles.', @@ -69,7 +69,7 @@ return [ 'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Los enlaces son permitidos usando el formato flavored de GitHub. Saltos de línea, cabeceras, imágenes, etc, pueden resultar impredecibles.', 'general_settings' => 'Configuración General', 'general_settings_keywords' => 'soporte de la empresa, firma, aceptación, formato de correo electrónico, formato de nombre de usuario, imágenes, por página, miniatura, eula, acuerdo de licencia de usuario final, términos y condiciiones, gravatar, términos de servicio, tablero de indicadores, privacidad', - 'general_settings_help' => 'Términos y condiciones por defecto y más', + 'general_settings_help' => 'Acuerdo de uso predeterminado y más', 'generate_backup' => 'Generar Respaldo', 'google_workspaces' => 'Espacios de trabajo de Google', 'header_color' => 'Color de encabezado', @@ -97,7 +97,7 @@ return [ 'ldap_server_help' => 'Esto debería empezar con ldap:// (sin codificar o TLS) o ldaps:// (para SSL)', 'ldap_server_cert' => 'Certificado de validación SSL LDAP', 'ldap_server_cert_ignore' => 'Permitir certificados SSL inválidos', - 'ldap_server_cert_help' => 'Selecciona este campo si estás usando un certificado SSL auto firmado y quieres aceptar un certificado SSL inválido.', + 'ldap_server_cert_help' => 'Seleccione esta casilla si está utilizando un certificado SSL autofirmado y desea aceptar un certificado SSL inválido.', 'ldap_tls' => 'Usar TLS', 'ldap_tls_help' => 'Esto se debe seleccionar si se está ejecutando STARTTLS en el servidor LDAP. ', 'ldap_uname' => 'Enlazar usuario LDAP', @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Longitud de etiquetas de activos, incluyendo relleno de ceros', 'username_format_help' => 'Esta configuración sólo será utilizada por el proceso de importación si no se proporciona un nombre de usuario y tenemos que generar un nombre de usuario para usted.', 'oauth_title' => 'Configuración de la API de OAuth', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Configuración de Endpoint Oauth', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Actualizar ajustes de etiqueta de activos', 'barcode_title' => 'Actualizar ajustes de código de barras', 'barcodes' => 'Códigos de barras', @@ -362,7 +372,7 @@ return [ 'mail_reply_to' => 'Dirección de respuesta de correo', 'mail_from' => 'Correo desde la dirección', 'database_driver' => 'Controlador de base de datos', - 'bs_table_storage' => 'Almacenamiento de Tabla', + 'bs_table_storage' => 'Almacenamiento de tabla', 'timezone' => 'Timezone', ]; diff --git a/resources/lang/es-ES/admin/statuslabels/message.php b/resources/lang/es-ES/admin/statuslabels/message.php index d6e634c3d..98aa10e8d 100644 --- a/resources/lang/es-ES/admin/statuslabels/message.php +++ b/resources/lang/es-ES/admin/statuslabels/message.php @@ -24,9 +24,9 @@ return [ 'help' => [ 'undeployable' => 'Estos activos no pueden asignarse a nadie.', - 'deployable' => 'Estos activos pueden ser retirados. Una vez estén asignados, asumirán el meta estado de Asignado.', - 'archived' => 'Estos activos no pueden desprotegerse y solo aparecerán en la vista Archivada. Esto es útil para retener información sobre activos para presupuestos / propósitos históricos, pero mantenerlos fuera de la lista de activos del día a día.', - 'pending' => 'Estos activos aún no se pueden asignar a nadie, a menudo se utilizan para artículos que están pendientes de reparación, pero se espera que vuelvan a la circulación.', + 'deployable' => 'Estos activos pueden ser asignados. Una vez estén asignados, asumirán el meta estado de Asignado.', + 'archived' => 'Estos equipos no pueden ser asignados y solo se mostrarán en la vista de Archivados. Esto es útil para mantener información de activos por razones de presupuesto o de revisión histórica y al mismo tiempo se excluyen de los activos que se pueden usar en el día a día.', + 'pending' => 'Estos equipos no pueden ser asignados, suele usarse para ítems que están en reparación, o que se espera que regresen a circulación eventualmente.', ], ]; diff --git a/resources/lang/es-ES/admin/statuslabels/table.php b/resources/lang/es-ES/admin/statuslabels/table.php index bcf4d3928..ec852d517 100644 --- a/resources/lang/es-ES/admin/statuslabels/table.php +++ b/resources/lang/es-ES/admin/statuslabels/table.php @@ -1,15 +1,15 @@ 'Info Etiquetas Estado', + 'about' => 'Acerca de las etiquetas de estado', 'archived' => 'Archivado', 'create' => 'Crear Etiqueta Estado', - 'color' => 'Color de la Gráfica', - 'default_label' => 'Etiqueta Predeterminada', + 'color' => 'Color en el gráfico', + 'default_label' => 'Etiqueta predeterminada', 'default_label_help' => 'Esto se usa para garantizar que las etiquetas de estado que utiliza con más frecuencia aparezcan en la parte superior del cuadro de selección al crear / editar activos.', 'deployable' => 'Utilizable', 'info' => 'Las etiquetas de estado se usan para describir los diferentes estados en que pueden estar sus equipos. Por ejemplo: en reparación, perdidos/robados, etc. Puede crear nuevas etiquetas de estado para equipos utilizables, pendientes o archivados.', - 'name' => 'Estado', + 'name' => 'Nombre de estado', 'pending' => 'Pendiente', 'status_type' => 'Tipo de estado', 'show_in_nav' => 'Mostrar en la barra lateral', diff --git a/resources/lang/es-ES/admin/suppliers/table.php b/resources/lang/es-ES/admin/suppliers/table.php index 26d5b79e8..02804f2fa 100644 --- a/resources/lang/es-ES/admin/suppliers/table.php +++ b/resources/lang/es-ES/admin/suppliers/table.php @@ -7,9 +7,9 @@ return array( 'assets' => 'Equipos', 'city' => 'Ciudad', 'contact' => 'Nombre Contacto', - 'country' => 'Pais', + 'country' => 'País', 'create' => 'Crear Proveedor', - 'email' => 'Email', + 'email' => 'Correo electrónico', 'fax' => 'Fax', 'id' => 'ID', 'licenses' => 'Licencias', @@ -20,7 +20,7 @@ return array( 'suppliers' => 'Proveedores', 'update' => 'Actualizar Proveedor', 'view' => 'Ver Proveedor', - 'view_assets_for' => 'Ver Equipos para', - 'zip' => 'Código Postal', + 'view_assets_for' => 'Ver activos para', + 'zip' => 'Código postal', ); diff --git a/resources/lang/es-ES/admin/users/general.php b/resources/lang/es-ES/admin/users/general.php index e484c781e..0ff687675 100644 --- a/resources/lang/es-ES/admin/users/general.php +++ b/resources/lang/es-ES/admin/users/general.php @@ -16,13 +16,13 @@ return [ 'restore_user' => 'Haga clic aquí para restaurarlos.', 'last_login' => 'Último acceso', 'ldap_config_text' => 'Las configuraciones de LDAP estàn en: Admin -> Settings. La ubicaciòn seleccionadada sera asignada a todos los usuarios importados.', - 'print_assigned' => 'Imprimir todos los Asignados', - 'email_assigned' => 'Lista de Correos Asignados', + 'print_assigned' => 'Imprimir todos los asignados', + 'email_assigned' => 'Enviar correo con todos los asignados', 'user_notified' => 'Se ha enviado un correo al usuario con sus artículos actualmente asignados.', 'auto_assign_label' => 'Incluir a este usuario al asignar automáticamente licencias elegibles', 'auto_assign_help' => 'Omitir este usuario en la asignación automática de licencias', 'software_user' => 'Software asignado a :name', - 'send_email_help' => 'Debe proporcionar una dirección de correo electrónico para este usuario para enviarle credenciales. Únicamente pueden enviarse credenciales por correo eléctronico durante la creación del usuario. Las contraseñas se almacenan en un hash de un solo sentido y no se pueden recuperar una vez guardadas.', + 'send_email_help' => 'Debe proporcionar una dirección de correo electrónico para este usuario para poder enviarle las credenciales. Únicamente pueden enviarse las credenciales por correo eléctronico durante la creación del usuario. Las contraseñas se almacenan en un hash de un solo sentido y no se pueden recuperar una vez guardadas.', 'view_user' => 'Ver Usuario :name', 'usercsv' => 'Archivo CSV', 'two_factor_admin_optin_help' => 'La configuración actual permite la aplicación selectiva de la autenticación de dos factores. ', @@ -40,10 +40,10 @@ return [ 'checkin_user_properties' => 'Disponibilizar todas las propiedades asociadas a estos usuarios', 'remote_label' => 'Este es un usuario remoto', 'remote' => 'Remoto', - 'remote_help' => 'Esto puede ser útil si necesita filtrar por usuarios remotos que nunca o raramente entran en sus ubicaciones físicas.', + 'remote_help' => 'Esto puede ser útil si necesita filtrar por usuarios remotos que nunca o raramente asisten a sus ubicaciones físicas.', 'not_remote_label' => 'Este no es un usuario remoto', 'vip_label' => 'Usuario VIP', - 'vip_help' => 'Esto puede ser útil para marcar a personas importantes en su org si desea manejarlas de maneras especiales.', + 'vip_help' => 'Esto puede ser útil como indicador de personas importantes en su organización si desea tratarlas de forma especial.', 'create_user' => 'Crear un usuario', 'create_user_page_explanation' => 'Esta es la información de la cuenta que usará para acceder al sitio por primera vez.', 'email_credentials' => 'Credenciales de email', diff --git a/resources/lang/es-ES/admin/users/message.php b/resources/lang/es-ES/admin/users/message.php index f6e2f9908..7424eca3e 100644 --- a/resources/lang/es-ES/admin/users/message.php +++ b/resources/lang/es-ES/admin/users/message.php @@ -11,7 +11,7 @@ return array( 'user_has_no_assets_assigned' => 'No hay activos asignados al usuario.', 'user_password_required' => 'La contraseña es obligatoria.', 'insufficient_permissions' => 'No tiene permiso.', - 'user_deleted_warning' => 'Este usuario ha sido eliminado. Deberá restaurarlo para editarlo o asignarle nuevos Equipos.', + 'user_deleted_warning' => 'Este usuario ha sido eliminado. Tendrá que restaurar este usuario para editarlo o para asignarle nuevos activos.', 'ldap_not_configured' => 'La integración con LDAP no ha sido configurada para esta instalación.', 'password_resets_sent' => 'A los usuarios seleccionados que están activados y tienen una dirección de correo electrónico válida se les ha enviado un enlace de restablecimiento de contraseña.', 'password_reset_sent' => '¡Se ha enviado un enlace de restablecimiento de contraseña a :email!', diff --git a/resources/lang/es-ES/admin/users/table.php b/resources/lang/es-ES/admin/users/table.php index 70b59b29a..ff4082117 100644 --- a/resources/lang/es-ES/admin/users/table.php +++ b/resources/lang/es-ES/admin/users/table.php @@ -7,7 +7,7 @@ return array( 'created_at' => 'Creado', 'createuser' => 'Crear Usuario', 'deny' => 'Denegar', - 'email' => 'Email', + 'email' => 'Correo electrónico', 'employee_num' => 'No. Empleado', 'first_name' => 'Nombre', 'groupnotes' => 'Seleccione un grupo para asignar al usuario, recuerde que un usuario asume los permisos del grupo al que se le asigna. Use ctrl+click (o cmd+click en MacOS) para anular la selección de grupos.', @@ -18,7 +18,7 @@ return array( 'last_name' => 'Apellidos', 'location' => 'Localización', 'lock_passwords' => 'Los detalles de acceso no pueden ser cambiados en esta instalación.', - 'manager' => 'Responsable', + 'manager' => 'Supervisor', 'managed_locations' => 'Ubicaciones gestionadas', 'managed_users' => 'Usuarios gestionados', 'name' => 'Usuario', diff --git a/resources/lang/es-ES/auth/general.php b/resources/lang/es-ES/auth/general.php index da077c946..18adff364 100644 --- a/resources/lang/es-ES/auth/general.php +++ b/resources/lang/es-ES/auth/general.php @@ -2,7 +2,7 @@ return [ 'send_password_link' => 'Enviar enlace de restablecimiento de contraseña', - 'email_reset_password' => 'Enviar correo para restablecer contraseña', + 'email_reset_password' => 'Enviar correo', 'reset_password' => 'Restablecer Contraseña', 'saml_login' => 'Iniciar sesión a través de SAML', 'login' => 'Iniciar Sesión', diff --git a/resources/lang/es-ES/button.php b/resources/lang/es-ES/button.php index 2845f0e34..5ae77fa7e 100644 --- a/resources/lang/es-ES/button.php +++ b/resources/lang/es-ES/button.php @@ -4,7 +4,7 @@ return [ 'actions' => 'Acciones', 'add' => 'Agregar nuevo', 'cancel' => 'Cancelar', - 'checkin_and_delete' => 'Checkin Todos / Eliminar Usuario', + 'checkin_and_delete' => 'Devolver todo / Eliminar usuario', 'delete' => 'Borrar', 'edit' => 'Editar', 'restore' => 'Restaurar', @@ -12,8 +12,8 @@ return [ 'request' => 'Solicitud', 'submit' => 'Enviar', 'upload' => 'Cargar', - 'select_file' => 'Seleccionar Archivo...', - 'select_files' => 'Selecciona Archivos...', + 'select_file' => 'Seleccione un archivo...', + 'select_files' => 'Seleccionar archivos...', 'generate_labels' => '{1} Generar Etiqueta|[2,*] Generar Etiquetas', 'send_password_link' => 'Enviar enlace de restablecimiento de contraseña', 'go' => 'Ir', diff --git a/resources/lang/es-ES/general.php b/resources/lang/es-ES/general.php index 44b1082c2..d274dfb5e 100644 --- a/resources/lang/es-ES/general.php +++ b/resources/lang/es-ES/general.php @@ -6,9 +6,9 @@ return [ 'activated' => 'Activado', 'accepted_date' => 'Fecha aceptada', 'accessory' => 'Accesorio', - 'accessory_report' => 'Reporte de Accesorios', + 'accessory_report' => 'Informe de accesorios', 'action' => 'Acción', - 'activity_report' => 'Reporte de Actividad', + 'activity_report' => 'Informe de actividad', 'address' => 'Dirección', 'admin' => 'Admin', 'admin_tooltip' => 'Este usuario tiene privilegios de superadministrador', @@ -45,7 +45,7 @@ return [ 'bad_data' => 'Ningún resultado. ¿Quizá un dato incorrecto?', 'bulkaudit' => 'Auditoría masiva', 'bulkaudit_status' => 'Estado de auditoría', - 'bulk_checkout' => 'Procesar en Lote', + 'bulk_checkout' => 'Asignación masiva', 'bulk_edit' => 'Edición masiva', 'bulk_delete' => 'Borrado masivo', 'bulk_actions' => 'Acciones masivas', @@ -59,15 +59,15 @@ return [ 'change' => 'Entrada / salida', 'changeemail' => 'Cambiar Email', 'changepassword' => 'Cambiar Password', - 'checkin' => 'Quitar Equipo', + 'checkin' => 'Devolver', 'checkin_from' => 'Devolución de', - 'checkout' => 'Asignar a un usuario', - 'checkouts_count' => 'Dar de Baja', - 'checkins_count' => 'Dar de Alta', + 'checkout' => 'Asignar', + 'checkouts_count' => 'Asignaciones', + 'checkins_count' => 'Devoluciones', 'user_requests_count' => 'Solicitudes', 'city' => 'Ciudad', 'click_here' => 'Pulsa aquí', - 'clear_selection' => 'Eliminar Selección', + 'clear_selection' => 'Borrar selección', 'companies' => 'Empresas', 'company' => 'Empresa', 'component' => 'Componente', @@ -75,10 +75,10 @@ return [ 'complete' => 'Completo', 'consumable' => 'Consumible', 'consumables' => 'Consumibles', - 'country' => 'Pais', + 'country' => 'País', 'could_not_restore' => 'Error al restaurar :item_type: :error', 'not_deleted' => 'El :item_type no está borrado por lo que no puede ser restaurado', - 'create' => 'Crear Localización', + 'create' => 'Crear Nuevo', 'created' => 'Artículo creado', 'created_asset' => 'equipo creado', 'created_at' => 'Creado el', @@ -104,14 +104,14 @@ return [ 'deletion_failed' => 'Error al eliminar', 'departments' => 'Departamentos', 'department' => 'Departamento', - 'deployed' => 'Asignados-', + 'deployed' => 'Asignados', 'depreciation' => 'Amortización', 'depreciations' => 'Depreciaciones', 'depreciation_report' => 'Informe de amortización', 'details' => 'Detalles', 'download' => 'Descargar', 'download_all' => 'Descargar todo', - 'editprofile' => 'Editar Perfil', + 'editprofile' => 'Editar perfil', 'eol' => 'EOL', 'email_domain' => 'Dominio de correo electrónico', 'email_format' => 'Formato de correo electrónico', @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Apellido Inicial (smith_j@ejemplo.com)', 'firstinitial.lastname' => 'Inicial Apellido (j.smith@ejemplo.com)', 'firstnamelastinitial' => 'Primer nombre y última inicial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Nombre', 'first_name_format' => 'Primer Nombre (jane@ejemplo.com)', 'files' => 'Archivos', @@ -154,7 +155,7 @@ return [ 'image' => 'Imagen', 'image_delete' => 'Borrar imagen', 'include_deleted' => 'Incluir activos eliminados', - 'image_upload' => 'Enviar imagen', + 'image_upload' => 'Cargar imagen', 'filetypes_accepted_help' => 'El tipo de archivo aceptado es :types. El tamaño máximo permitido es :size.|Los tipos de archivo aceptados son :types. El tamaño máximo permitido es :size.', 'filetypes_size_help' => 'El tamaño máximo de carga permitido es :size.', 'image_filetypes_help' => 'Los tipos de archivo aceptados son jpg, webp, png, gif y svg. El tamaño máximo permitido es :size.', @@ -163,10 +164,10 @@ return [ 'import_this_file' => 'Mapear campos y procesar este archivo', 'importing' => 'Importando', 'importing_help' => 'Puedes importar activos, accesorios, licencias, componentes, insumos y usuarios vía archivos CSV.

El CSV debe estar delimitado por comas y formateado con encabezados que coincidan con aquellos definidos en los CSVs de muestra en la documentación.', - 'import-history' => 'Historial de Importación', + 'import-history' => 'Importar historial', 'asset_maintenance' => 'Mantenimiento de Equipo', 'asset_maintenance_report' => 'Informe mantenimiento de activos', - 'asset_maintenances' => 'Mantenimientos de Equipo', + 'asset_maintenances' => 'Mantenimiento de activos', 'item' => 'Item', 'item_name' => 'Nombre del ítem', 'import_file' => 'importar archivo CSV', @@ -214,11 +215,11 @@ return [ 'no_results' => 'Sin Resultados.', 'no' => 'No', 'notes' => 'Notas', - 'order_number' => 'Nùmero de orden', + 'order_number' => 'Número de orden', 'only_deleted' => 'Sólo activos eliminados', 'page_menu' => 'Mostrando elementos de _MENU_', 'pagination_info' => 'Mostrando _START_ de _END_ de elementos _TOTAL_', - 'pending' => 'Equipo Pendiente', + 'pending' => 'Pendientes', 'people' => 'Usuarios', 'per_page' => 'Resultados Por Pag', 'previous' => 'Previo', @@ -228,7 +229,7 @@ return [ 'purchase_date' => 'Fecha de compra', 'qty' => 'Cant', 'quantity' => 'Cantidad', - 'quantity_minimum' => 'Tienes :count elementos por debajo o casi por debajo de los niveles mínimos de cantidad', + 'quantity_minimum' => 'Tiene :con elementos por debajo o casi por debajo de los niveles mínimos de cantidad', 'quickscan_checkin' => 'Escaneo rápido de entrada', 'quickscan_checkin_status' => 'Estado de registro', 'ready_to_deploy' => 'Listo para asignar', @@ -254,16 +255,16 @@ return [ 'select_category' => 'Seleccione una categoría', 'select_datasource' => 'Seleccione un origen de datos', 'select_department' => 'Seleccione un departamento', - 'select_depreciation' => 'Seleccionar un tipo de Amortización', - 'select_location' => 'Seleccionar una Ubicación', - 'select_manufacturer' => 'Seleccionar un Fabricante', - 'select_model' => 'Seleccionar un Modelo', - 'select_supplier' => 'Seleccionar un Proveedor', - 'select_user' => 'Seleccionar un usuario', - 'select_date' => 'Seleccione Fecha (AAAA-MM-DD)', - 'select_statuslabel' => 'Seleccionar Estado', - 'select_company' => 'Seleccionar empresa', - 'select_asset' => 'Seleccionar activos', + 'select_depreciation' => 'Seleccionar un tipo de amortización', + 'select_location' => 'Seleccione una ubicación', + 'select_manufacturer' => 'Seleccione un fabricante', + 'select_model' => 'Seleccione un modelo', + 'select_supplier' => 'Seleccione un proveedor', + 'select_user' => 'Seleccione un usuario', + 'select_date' => 'Seleccione fecha (AAAA-MM-DD)', + 'select_statuslabel' => 'Seleccione un estado', + 'select_company' => 'Seleccione una empresa', + 'select_asset' => 'Seleccionar activo', 'settings' => 'Opciones', 'show_deleted' => 'Mostrar Eliminado', 'show_current' => 'Mostrar actual', @@ -308,23 +309,23 @@ return [ 'users' => 'Usuarios', 'viewall' => 'Ver todos', 'viewassets' => 'Ver elementos asignados', - 'viewassetsfor' => 'Ver activos de :name', + 'viewassetsfor' => 'Ver activos para :name', 'website' => 'Sitio web', 'welcome' => 'Bienvenido, :name', 'years' => 'años', 'yes' => 'Si', - 'zip' => 'Códio Postal', + 'zip' => 'Código postal', 'noimage' => 'Imagen no subida o imagen no encontrada.', 'file_does_not_exist' => 'El archivo solicitado no existe en el servidor.', 'file_upload_success' => '¡Archivo cargado exitosamente!', 'no_files_uploaded' => '¡Archivo cargado exitosamente!', 'token_expired' => 'Su sesión ha caducado. Por favor, inténtelo de nuevo.', 'login_enabled' => 'Inicio de sesión habilitado', - 'audit_due' => 'Auditoría pendiente', - 'audit_due_days' => 'Activos vencidos para auditoría dentro de :days Día|Activos vencidos para auditoría dentro de :days Días', - 'checkin_due' => 'Vence por Checkin', - 'checkin_overdue' => 'Atrasado para Checkin', - 'checkin_due_days' => 'Activos vencidos por cheque dentro de :days día|Activos vencidos por cheque dentro de :days días', + 'audit_due' => 'Vence la auditoría', + 'audit_due_days' => 'Activos pendientes para auditoría dentro de :days día|Activos pendientes para auditoría dentro de :days días', + 'checkin_due' => 'Pendiente por devolver', + 'checkin_overdue' => 'Atrasado por devolver', + 'checkin_due_days' => 'Activos que deben ser devueltos dentro de :days día|Activos que deben ser devueltos dentro de :days días', 'audit_overdue' => 'Auditoría retrasada', 'accept' => 'Aceptar :asset', 'i_accept' => 'Acepto', @@ -336,7 +337,7 @@ return [ 'hide_help' => 'Ocultar ayuda', 'view_all' => 'ver todo', 'hide_deleted' => 'Ocultar eliminados', - 'email' => 'Email', + 'email' => 'Correo electrónico', 'do_not_change' => 'No cambiar', 'bug_report' => 'Reportar un fallo', 'user_manual' => 'Manual del usuario', @@ -358,7 +359,7 @@ return [ 'reminder_checked_out_items' => 'Este es un recordatorio de los elementos que se le han asignado actualmente. Si usted cree que esta lista es incorrecta (falta algo o aparece algo que usted cree que nunca ha recibido), por favor envíe un correo electrónico a :reply_to_name a :reply_to_address.', 'changed' => 'Cambiado', 'to' => 'A', - 'report_fields_info' => '

Seleccione los campos que desea incluir en su informe personalizado y haga clic en Generar. El archivo (custom-asset-report-YYYY-mm-dd.csv) se descargará automáticamente, y puede abrirlo en Excel.

+ 'report_fields_info' => '

Seleccione los campos que desea incluir en su informe personalizado y haga clic en Generar. El archivo (custom-asset-report-YYYY-mm-dd.csv) se descargará automáticamente y puede abrirlo en Excel.

Si desea exportar sólo ciertos activos, utilice las siguientes opciones para afinar sus resultados.

', 'range' => 'Rango', 'bom_remark' => 'Añadir un BOM (signo de orden de byte) a este CSV', @@ -374,13 +375,13 @@ return [ 'license_serial' => 'Número de Serie/Clave de Producto', 'invalid_category' => 'Categoría no válida o ausente', 'invalid_item_category_single' => 'Falta o no válida :type categoría. Por favor actualiza la categoría de este :type para incluir una categoría válida antes de salir.', - 'dashboard_info' => 'Este es tu panel de control. Hay muchos parecidos, pero este es el tuyo.', + 'dashboard_info' => 'Este es su panel de control. Hay muchos similares, pero este es suyo.', '60_percent_warning' => '60% completo (advertencia)', - 'dashboard_empty' => 'Parece que aún no has añadido nada, así que no tenemos nada impresionante que mostrar. ¡Comienza añadiendo algunos activos, accesorios, consumibles o licencias ahora!', + 'dashboard_empty' => 'Parece que aún no ha añadido nada, así que no tenemos nada impresionante que mostrar. ¡Comience añadiendo algunos activos, accesorios, consumibles o licencias ahora!', 'new_asset' => 'Nuevo activo', - 'new_license' => 'Nueva Licencia', + 'new_license' => 'Nueva licencia', 'new_accessory' => 'Nuevo accesorio', - 'new_consumable' => 'Nuevo Consumible', + 'new_consumable' => 'Nuevo consumible', 'collapse' => 'Contraer', 'assigned' => 'Asignado', 'asset_count' => 'Recuento de activos', @@ -396,16 +397,16 @@ return [ 'notification_info' => 'Información', 'asset_information' => 'Información del activo', 'model_name' => 'Nombre del modelo', - 'asset_name' => 'Nombre del Equipo', + 'asset_name' => 'Nombre del activo', 'consumable_information' => 'Información del consumible:', 'consumable_name' => 'Nombre del Consumible:', 'accessory_information' => 'Información del accesorio:', 'accessory_name' => 'Nombre de accesorio:', 'clone_item' => 'Clonar objeto', - 'checkout_tooltip' => 'Registrar salida de este elemento', + 'checkout_tooltip' => 'Asignar este elemento', 'checkin_tooltip' => 'Devuelva este elemento para que esté disponible para resignar, borrar, etc.', - 'checkout_user_tooltip' => 'Registrar salida de este elemento para un usuario', - 'checkin_to_diff_location' => 'Puede optar por registrar este activo en una ubicación distinta a la predeterminada :default_location, si es que existe una configurada', + 'checkout_user_tooltip' => 'Asignar este elemento a un usuario', + 'checkin_to_diff_location' => 'Puede optar por asignar este activo a una ubicación distinta a la predeterminada :default_location, si es que existe una configurada', 'maintenance_mode' => 'El servicio no está disponible temporalmente debido por actualizaciones del sistema. Por favor, vuelva más tarde.', 'maintenance_mode_title' => 'Sistema temporalmente no disponible', 'ldap_import' => 'La contraseña de usuario no debe ser administrada por LDAP. (Esto le permite enviar solicitudes de contraseña olvidada.)', @@ -522,7 +523,7 @@ return [ 'action_source' => 'Fuente de acción', 'or' => 'o', 'url' => 'URL', - 'edit_fieldset' => 'Editar campos y opciones de campos', + 'edit_fieldset' => 'Editar campos y opciones de grupos de campos', 'permission_denied_superuser_demo' => 'Permiso denegado. No puede actualizar la información de usuario para superadministradores en la demo.', 'pwd_reset_not_sent' => 'El usuario no está activado, está sincronizado con LDAP o no tiene una dirección de correo electrónico', 'error_sending_email' => 'Error al enviar email', @@ -537,7 +538,7 @@ return [ 'partial' => 'Eliminado :success_count :object_type, pero :error_count :object_type no pudieron ser eliminados', ], ], - 'no_requestable' => 'No hay activos o modelos de activos solicitables.', + 'no_requestable' => 'No hay activos o modelos de activos que puedan solicitarse.', 'countable' => [ 'accessories' => ':count Accesorio|:count Accesorios', diff --git a/resources/lang/es-ES/help.php b/resources/lang/es-ES/help.php index f9596b8d9..7b65497a8 100644 --- a/resources/lang/es-ES/help.php +++ b/resources/lang/es-ES/help.php @@ -29,7 +29,7 @@ return [ 'consumables' => 'Los consumibles son cualquier cosa comprada que se usará con el tiempo. Por ejemplo, tinta de impresora o papel copiador.', - 'depreciations' => 'Puede configurar las depreciaciones de activos para depreciar activos basados en una depreciación lineal.', + 'depreciations' => 'Puede configurar la depreciación de activos usando un método de línea recta.', 'empty_file' => 'El importador detecta que este archivo está vacío.' ]; diff --git a/resources/lang/es-MX/account/general.php b/resources/lang/es-MX/account/general.php index 78ea705a9..7e637a3be 100644 --- a/resources/lang/es-MX/account/general.php +++ b/resources/lang/es-MX/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Claves API personales', - 'api_key_warning' => 'Al generar un token API, asegúrate de copiarlo inmediatamente ya que - no será visible para ti de nuevo.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'La url base de tu API se encuentra en:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'Los tokens de la API están establecidos para expirar en:', - 'api_reference' => 'Por favor, revise la referencia API para - encontrar puntos finales específicos de la API y documentación adicional de la API.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Cuenta actualizada exitosamente', ); diff --git a/resources/lang/es-MX/admin/accessories/general.php b/resources/lang/es-MX/admin/accessories/general.php index 6303de53b..057dd7661 100644 --- a/resources/lang/es-MX/admin/accessories/general.php +++ b/resources/lang/es-MX/admin/accessories/general.php @@ -7,15 +7,15 @@ return array( 'checkin' => 'Checkin Accesorio', 'create' => 'Crear Accesorio', 'edit' => 'Editar Accesorio', - 'eula_text' => 'Términos y condiciones de la categoría', - 'eula_text_help' => 'Este campo permite personalizar los términos y condiciones para tipos específicos de activos. Si solo tiene unos términos y condiciones para todos sus activos, puede seleccionar la siguiente opción para usar el valor por defecto.', + 'eula_text' => 'Acuerdo de uso de la categoría', + 'eula_text_help' => 'Este campo permite personalizar los acuerdos de uso para tipos específicos de activos. Si solo tiene un acuerdo de uso para todos sus activos, puede seleccionar la siguiente opción para usar el valor por predeterminado.', 'require_acceptance' => 'Pedir a los usuarios confirmación de aceptación de los elementos en esta categoría.', - 'no_default_eula' => 'No se encontraron términos y condiciones por defecto. Agregue unos en Configuración.', + 'no_default_eula' => 'No se encontró el acuerdo de uso predeterminado. Agregue unos en Configuración.', 'total' => 'Total ', 'remaining' => 'Disponibles', 'update' => 'Actualizar Accesorio', - 'use_default_eula' => 'En su lugar, use los términos y condiciones por defecto.', - 'use_default_eula_disabled' => 'En su lugar, use los términos y condiciones por defecto. No están configurados términos y condiciones defecto. Por favor agregue unos en Configuración.', + 'use_default_eula' => 'En su lugar, el acuerdo de uso predeterminado.', + 'use_default_eula_disabled' => 'En su lugar, use el acuerdo de uso predeterminado. No está configurado el acuerdo de uso predeterminado. Por favor agregue uno en Configuración.', 'clone' => 'Clonar accesorio', 'delete_disabled' => 'Este accesorio no se puede eliminar aún porque algunos artículos todavía están asignados.', diff --git a/resources/lang/es-MX/admin/accessories/table.php b/resources/lang/es-MX/admin/accessories/table.php index d88cf1b98..1a2d33e1e 100644 --- a/resources/lang/es-MX/admin/accessories/table.php +++ b/resources/lang/es-MX/admin/accessories/table.php @@ -2,7 +2,7 @@ return array( 'dl_csv' => 'Descargar CSV', - 'eula_text' => 'Términos y condiciones', + 'eula_text' => 'Acuerdo de uso', 'id' => 'ID', 'require_acceptance' => 'Aceptación', 'title' => 'Nombre accesorio', diff --git a/resources/lang/es-MX/admin/asset_maintenances/general.php b/resources/lang/es-MX/admin/asset_maintenances/general.php index 09f28adc7..5a69545b6 100644 --- a/resources/lang/es-MX/admin/asset_maintenances/general.php +++ b/resources/lang/es-MX/admin/asset_maintenances/general.php @@ -1,7 +1,7 @@ 'Mantenimientos de Equipo', + 'asset_maintenances' => 'Mantenimiento de activos', 'edit' => 'Editar Mantenimiento de Equipo', 'delete' => 'Eliminar Mantenimiento de Equipo', 'view' => 'Ver Detalle de Mantenimiento de Equipo', diff --git a/resources/lang/es-MX/admin/asset_maintenances/table.php b/resources/lang/es-MX/admin/asset_maintenances/table.php index 473e3ef34..adabb3ff6 100644 --- a/resources/lang/es-MX/admin/asset_maintenances/table.php +++ b/resources/lang/es-MX/admin/asset_maintenances/table.php @@ -2,7 +2,7 @@ return [ 'title' => 'Mantenimiento de Equipo', - 'asset_name' => 'Nombre del Equipo', + 'asset_name' => 'Nombre del activo', 'is_warranty' => 'Garantía', 'dl_csv' => 'Descargar CSV', ]; diff --git a/resources/lang/es-MX/admin/categories/general.php b/resources/lang/es-MX/admin/categories/general.php index b0dacf24b..3ad20360b 100644 --- a/resources/lang/es-MX/admin/categories/general.php +++ b/resources/lang/es-MX/admin/categories/general.php @@ -8,18 +8,18 @@ return array( 'clone' => 'Clonar categoría', 'create' => 'Crear categoría', 'edit' => 'Editar categoría', - 'email_will_be_sent_due_to_global_eula' => 'Se enviará un correo electrónico al usuario porque se están utilizando los términos y condiciones globales.', - 'email_will_be_sent_due_to_category_eula' => 'Se enviará un correo electrónico al usuario porque se han establecido términos y condiciones para esta categoría.', - 'eula_text' => 'Términos y condiciones de la categoría', - 'eula_text_help' => 'Este campo permite personalizar los términos y condiciones para tipos específicos de activos. Si solo tiene unos términos y condiciones para todos sus activos, puede seleccionar la siguiente opción para usar la definición por defecto.', + 'email_will_be_sent_due_to_global_eula' => 'Se enviará un correo electrónico al usuario porque se está utilizando el acuerdo de uso global.', + 'email_will_be_sent_due_to_category_eula' => 'Se enviará un correo electrónico al usuario porque se ha establecido un acuerdo de uso para esta categoría.', + 'eula_text' => 'Acuerdo de uso de la categoría', + 'eula_text_help' => 'Este campo permite personalizar el acuerdo de uso para tipos específicos de activos. Si solo tiene un acuerdo de uso para todos sus activos, puede seleccionar la siguiente opción para usar la definición predeterminada.', 'name' => 'Nombre de la categoría', 'require_acceptance' => 'Requerir a los usuarios que confirmen la aceptación de los elementos en esta categoría.', 'required_acceptance' => 'Este usuario recibirá un correo con un enlace para confirmar la aceptación de este elemento.', - 'required_eula' => 'Se enviará un correo electrónico a este usuario con una copia de los términos y condiciones', - 'no_default_eula' => 'No se encontró definición de los términos y condiciones por defecto. Agregue unos en Configuración', + 'required_eula' => 'Se enviará un correo electrónico a este usuario con una copia del acuerdo de uso', + 'no_default_eula' => 'No se encontró una definición del acuerdo de uso por defecto. Agregue uno en Configuración.', 'update' => 'Actualizar categoría', - 'use_default_eula' => 'En su lugar, use los términos y condiciones por defecto.', - 'use_default_eula_disabled' => 'En su lugar, use los términos y condicione por defecto. No se han establecido términos y condiciones por defecto. Por favor agregue unos en Configuración.', - 'use_default_eula_column' => 'Usar los términos y condiciones por defecto', + 'use_default_eula' => 'En su lugar, utilice el acuerdo de uso predeterminado.', + 'use_default_eula_disabled' => 'En su lugar, utilice el acuerdo de uso predeterminado. No se ha establecido el acuerdo de uso predeterminado. Por favor agregue uno en Configuración.', + 'use_default_eula_column' => 'Utilizar el acuerdo de uso predeterminado', ); diff --git a/resources/lang/es-MX/admin/categories/table.php b/resources/lang/es-MX/admin/categories/table.php index ed2f7038d..e3bb551e9 100644 --- a/resources/lang/es-MX/admin/categories/table.php +++ b/resources/lang/es-MX/admin/categories/table.php @@ -1,7 +1,7 @@ 'Términos y condiciones', + 'eula_text' => 'Acuerdo de uso', 'id' => 'ID', 'parent' => 'Padre', 'require_acceptance' => 'Aceptación', diff --git a/resources/lang/es-MX/admin/companies/general.php b/resources/lang/es-MX/admin/companies/general.php index c8fea9b67..603f03ee5 100644 --- a/resources/lang/es-MX/admin/companies/general.php +++ b/resources/lang/es-MX/admin/companies/general.php @@ -1,7 +1,7 @@ 'Seleccionar compañía', + 'select_company' => 'Seleccione una empresa', 'about_companies' => 'Acerca de las empresas', 'about_companies_description' => ' Puede utilizar las empresas como un simple campo informativo, o puede utilizarlas para restringir la visibilidad y la disponibilidad de los activos a los usuarios con una empresa específica, esto se hace habilitando la opción de "Soporte completo a varias empresas" en la "Configuración de administrador"', ]; diff --git a/resources/lang/es-MX/admin/components/general.php b/resources/lang/es-MX/admin/components/general.php index 760b4102a..d047e56c1 100644 --- a/resources/lang/es-MX/admin/components/general.php +++ b/resources/lang/es-MX/admin/components/general.php @@ -8,9 +8,9 @@ return array( 'create' => 'Crear componente', 'edit' => 'Editar componente', 'date' => 'Fecha de compra', - 'order' => 'Nùmero de orden', + 'order' => 'Número de orden', 'remaining' => 'Restante', 'total' => 'Total', 'update' => 'Actualizar Componente', - 'checkin_limit' => 'La cantidad introducida debe ser igual o menor que :assigned_qty' + 'checkin_limit' => 'La cantidad devuelta debe ser igual o menor que :assigned_qty' ); diff --git a/resources/lang/es-MX/admin/consumables/message.php b/resources/lang/es-MX/admin/consumables/message.php index c037fbe1a..6955e846f 100644 --- a/resources/lang/es-MX/admin/consumables/message.php +++ b/resources/lang/es-MX/admin/consumables/message.php @@ -10,25 +10,25 @@ return array( ), 'update' => array( - 'error' => 'El consumible no fue subido, por favor intente nuevamente', + 'error' => 'El consumible no fue actualizado, por favor, inténtalo de nuevo', 'success' => 'El consumible fue subido con éxito.' ), 'delete' => array( 'confirm' => '¿Está seguro que desea eliminar este consumible?', - 'error' => 'Hubo un error al borrar este consumible. Por favor intente nuevamente.', + 'error' => 'Hubo un problema al eliminar el consumible. Por favor inténtelo de nuevo.', 'success' => 'El consumible ha sido eliminado correctamente.' ), 'checkout' => array( - 'error' => 'Consumible no fue retirado, por favor, inténtelo de nuevo', + 'error' => 'El consumible no fue asignado, por favor inténtelo de nuevo', 'success' => 'Consumible fue retirado satisfactoriamente.', 'user_does_not_exist' => 'Este usuario es inválido . Inténtalo de nuevo.', 'unavailable' => 'No hay suficientes consumibles para esta asignación. Por favor, compruebe la cantidad restante. ', ), 'checkin' => array( - 'error' => 'Consumible no fue ingresado, por favor, inténtelo de nuevo', + 'error' => 'Consumible no fue devuelto, por favor inténtelo de nuevo', 'success' => 'Consumible fue ingresado satisfactoriamente.', 'user_does_not_exist' => 'Este usuario es inválido . Inténtalo de nuevo.' ) diff --git a/resources/lang/es-MX/admin/custom_fields/general.php b/resources/lang/es-MX/admin/custom_fields/general.php index 2fc3e3be5..51d9f8e36 100644 --- a/resources/lang/es-MX/admin/custom_fields/general.php +++ b/resources/lang/es-MX/admin/custom_fields/general.php @@ -4,16 +4,16 @@ return [ 'custom_fields' => 'Campos personalizados', 'manage' => 'Administra', 'field' => 'Campo', - 'about_fieldsets_title' => 'Acerca de los campos personalizados', - 'about_fieldsets_text' => 'Los conjuntos de campos permiten crear grupos de campos personalizados que son frecuentemente reutilizados para tipos específicos de modelos de activos.', + 'about_fieldsets_title' => 'Acerca de los grupos de campos', + 'about_fieldsets_text' => 'Los grupos de campos le permiten agrupar campos personalizados que se reutilizan frecuentemente para determinados modelos de activos.', 'custom_format' => 'Expresión regular personalizada...', 'encrypt_field' => 'Encriptar el valor de este campo en la base de datos', 'encrypt_field_help' => 'CUIDADO: Encriptar un campo hace que no se pueda buscar por él.', 'encrypted' => 'Encriptado', - 'fieldset' => 'Grupo de campos personalizados', - 'qty_fields' => 'Campos de Cantidad', - 'fieldsets' => 'Grupo de campos personalizados', - 'fieldset_name' => 'Nombre del grupo', + 'fieldset' => 'Grupo de campos', + 'qty_fields' => 'Campos de cantidad', + 'fieldsets' => 'Grupo de campos', + 'fieldset_name' => 'Nombre del grupo de campos', 'field_name' => 'Nombre del campo', 'field_values' => 'Valores de los Campos', 'field_values_help' => 'Agregar opciones seleccionables, una por linea. Lineas en blanco ademas de la primera, serán ignoradas.', @@ -27,8 +27,8 @@ return [ 'used_by_models' => 'Usado Por Modelos', 'order' => 'Orden', 'create_fieldset' => 'Nuevo grupo de campos', - 'update_fieldset' => 'Actualizar Grupo de Campos Personalizados', - 'fieldset_does_not_exist' => 'El Grupo de Campos :id no existe', + 'update_fieldset' => 'Actualizar grupo de campos', + 'fieldset_does_not_exist' => 'El grupo de campos :id no existe', 'fieldset_updated' => 'Se ha actualizado el Grupo de Campos', 'create_fieldset_title' => 'Crear un nuevo conjunto de campos', 'create_field' => 'Nuevo campo personalizado', diff --git a/resources/lang/es-MX/admin/departments/table.php b/resources/lang/es-MX/admin/departments/table.php index 05abf227d..b24a16d3a 100644 --- a/resources/lang/es-MX/admin/departments/table.php +++ b/resources/lang/es-MX/admin/departments/table.php @@ -4,7 +4,7 @@ return array( 'id' => 'CARNÉ DE IDENTIDAD', 'name' => 'Nombre de Departamento', - 'manager' => 'Gerente', + 'manager' => 'Supervisor', 'location' => 'Ubicación', 'create' => 'Crear departamento', 'update' => 'Departamento de actualización', diff --git a/resources/lang/es-MX/admin/depreciations/general.php b/resources/lang/es-MX/admin/depreciations/general.php index 675b042d6..86e175aeb 100644 --- a/resources/lang/es-MX/admin/depreciations/general.php +++ b/resources/lang/es-MX/admin/depreciations/general.php @@ -1,11 +1,11 @@ 'Info Amortización Equipos', - 'about_depreciations' => 'Puedes configurar clases de amortización para amortizar equipos de forma lineal.', + 'about_asset_depreciations' => 'Sobre amortización de activos', + 'about_depreciations' => 'Puede configurar la amortización de activos usando un método de línea recta.', 'asset_depreciations' => 'Amortizaciones', - 'create' => 'Crear Amortización', - 'depreciation_name' => 'Nombre Amortización', + 'create' => 'Crear amortización', + 'depreciation_name' => 'Nombre amortización', 'depreciation_min' => 'Valor mínimo de depreciación', 'number_of_months' => 'Meses', 'update' => 'Actualizar Amortización', diff --git a/resources/lang/es-MX/admin/hardware/form.php b/resources/lang/es-MX/admin/hardware/form.php index d6c24845e..2c36f06dd 100644 --- a/resources/lang/es-MX/admin/hardware/form.php +++ b/resources/lang/es-MX/admin/hardware/form.php @@ -19,12 +19,12 @@ return [ 'checkout_to' => 'Asignar a', 'cost' => 'Precio Compra', 'create' => 'Crear Equipo', - 'date' => 'Fecha Compra', + 'date' => 'Fecha de compra', 'depreciation' => 'Depreciación', 'depreciates_on' => 'Se deprecia en', - 'default_location' => 'Ubicación Predeterminada', + 'default_location' => 'Ubicación predeterminada', 'default_location_phone' => 'Teléfono de ubicación por defecto', - 'eol_date' => 'Fecha EOL', + 'eol_date' => 'Fecha fin de soporte (EOL)', 'eol_rate' => 'Tasa de EOL', 'expected_checkin' => 'Fecha esperada de devolución', 'expires' => 'Expira', @@ -34,15 +34,15 @@ return [ 'manufacturer' => 'Fabricante', 'model' => 'Modelo', 'months' => 'meses', - 'name' => 'Equipo', + 'name' => 'Nombre del activo', 'notes' => 'Notas', - 'order' => 'Nº Pedido', + 'order' => 'Número de orden', 'qr' => 'Código QR', 'requestable' => 'Los usuarios pueden solicitar este elemento', 'redirect_to_all' => 'Return to all :type', 'redirect_to_type' => 'Ir a :type', 'redirect_to_checked_out_to' => 'Go to Checked Out to', - 'select_statustype' => 'Selecciona estado', + 'select_statustype' => 'Seleccione un tipo de estado', 'serial' => 'N. Serie', 'status' => 'Estado', 'tag' => 'Etiqueta', diff --git a/resources/lang/es-MX/admin/hardware/general.php b/resources/lang/es-MX/admin/hardware/general.php index 934f3eb52..560b2518c 100644 --- a/resources/lang/es-MX/admin/hardware/general.php +++ b/resources/lang/es-MX/admin/hardware/general.php @@ -6,14 +6,14 @@ return [ 'archived' => 'Archivado', 'asset' => 'Equipo', 'bulk_checkout' => 'Checkout Assets', - 'bulk_checkin' => 'Regresar/ingresar equipo', - 'checkin' => 'Quitar Equipo', + 'bulk_checkin' => 'Devolver activos', + 'checkin' => 'Devolver activo', 'checkout' => 'Activo de pago', - 'clone' => 'Clonar Equipo', + 'clone' => 'Clonar activo', 'deployable' => 'Utilizable', 'deleted' => 'Este activo ha sido eliminado.', 'delete_confirm' => '¿Está seguro de que desea eliminar este recurso?', - 'edit' => 'Editar Equipo', + 'edit' => 'Editar activo', 'model_deleted' => 'Este modelo de equipo fue eliminado. Debes restaurar el moldelo antes de restaurar el activo.', 'model_invalid' => 'Este modelo para este activo es inválido.', 'model_invalid_fix' => 'The asset must be updated use a valid asset model before attempting to check it in or out, or to audit it.', @@ -25,7 +25,7 @@ return [ 'pending' => 'Pendiente', 'undeployable' => 'No utilizable', 'undeployable_tooltip' => 'Este activo tiene una etiqueta de estado que es no utilizable y no puede ser asignado en este momento.', - 'view' => 'Ver Equipo', + 'view' => 'Ver activo', 'csv_error' => 'Hay un error en su archivo CSV:', 'import_text' => '

Cargue un archivo CSV que contenga el historial de activos. Los activos y los usuarios DEBEN existir ya en el sistema, o serán omitidos. La importación del historial busca activos que coincidan con la etiqueta de activo. Intentaremos encontrar un usuario usando el nombre del usuario que proporcione y los criterios que seleccione a continuación. Si no selecciona ningún criterio, el sistema simplemente intentará usar el formato de nombre de usuario configurado en Admin > Opciones Generales.

Los campos incluidos en el CSV deben coincidir con los encabezados: Asset Tag, Name, Checkout Date, Checkin Date. Cualquier campo adicional será ignorado.

Checkin Date(Fecha de Devolución): dejar en blanco o usar fechas futuras asignará los ítems al usuario asociado. Excluir la columna Checkin Date creará una fecha de devolución con la fecha de hoy.

', 'csv_import_match_f-l' => 'Intenta emparejar usuarios con formato nombre.lastname (jane.smith)', diff --git a/resources/lang/es-MX/admin/hardware/message.php b/resources/lang/es-MX/admin/hardware/message.php index 4e8537122..032271938 100644 --- a/resources/lang/es-MX/admin/hardware/message.php +++ b/resources/lang/es-MX/admin/hardware/message.php @@ -12,7 +12,7 @@ return [ 'warning_audit_date_mismatch' => 'La próxima fecha de auditoría de este activo (:next_audit_date) es anterior a la última fecha de auditoría (:last_audit_date). Por favor, actualice la próxima fecha de auditoría.', 'create' => [ - 'error' => 'Equipo no creado, intentalo de nuevo. :(', + 'error' => 'El activo no fue creado, por favor, inténtelo de nuevo. :(', 'success' => 'Equipo creado. :)', 'success_linked' => 'Activo con etiqueta :tag creado con éxito. Haga clic aquí para ver.', ], @@ -71,7 +71,7 @@ return [ ], 'checkout' => [ - 'error' => 'Equipo no asignado, intentalo de nuevo', + 'error' => 'El activo no fue asignado, por favor inténtelo de nuevo', 'success' => 'Equipo asignado.', 'user_does_not_exist' => 'Este usuario no es correcto. Intentalo de nuevo.', 'not_available' => '¡Ese artículo no está disponible para retirada!', @@ -79,10 +79,10 @@ return [ ], 'checkin' => [ - 'error' => 'No se ha quitado el equipo. Intentalo de nuevo.', - 'success' => 'Equipo quitado correctamente.', - 'user_does_not_exist' => 'Este usuario no es correcto. Intentalo de nuevo.', - 'already_checked_in' => 'Ese activo ya se quito.', + 'error' => 'El equipo no se pudo devolver, por favor inténtelo de nuevo', + 'success' => 'El activo fue devuelto exitosamente.', + 'user_does_not_exist' => 'Es usuario no es correcto, por favor inténtelo de nuevo.', + 'already_checked_in' => 'El equipo ya ha sido devuelto.', ], diff --git a/resources/lang/es-MX/admin/licenses/form.php b/resources/lang/es-MX/admin/licenses/form.php index 3724e53db..b1d1d180d 100644 --- a/resources/lang/es-MX/admin/licenses/form.php +++ b/resources/lang/es-MX/admin/licenses/form.php @@ -3,8 +3,8 @@ return array( 'asset' => 'Equipo', - 'checkin' => 'Quita', - 'create' => 'Nueva Licencia', + 'checkin' => 'Devolver', + 'create' => 'Crear licencia', 'expiration' => 'Fecha de vencimiento', 'license_key' => 'Clave de producto', 'maintained' => 'Mantenido', @@ -18,5 +18,5 @@ return array( 'to_email' => 'Registrado a Email', 'to_name' => 'Registrado a Nombre', 'update' => 'Actualizar Licencia', - 'checkout_help' => 'Puedes asignar la licencia a un equipo a a un usuario. Puedes seleccionarlos a ambos, pero el dueño de la licencia debe ser el mismo usuario al que asignes el equipo.' + 'checkout_help' => 'Debe asignar una licencia a un activo de hardware o a una persona. Puede seleccionar ambos, pero el propietario del activo debe coincidir con la persona a la que está asignado el activo.' ); diff --git a/resources/lang/es-MX/admin/licenses/message.php b/resources/lang/es-MX/admin/licenses/message.php index f86f34416..a53fa9e55 100644 --- a/resources/lang/es-MX/admin/licenses/message.php +++ b/resources/lang/es-MX/admin/licenses/message.php @@ -47,7 +47,7 @@ return array( ), 'checkin' => array( - 'error' => 'No se ha quitado el equipo. Intentalo de nuevo.', + 'error' => 'Hubo un problema devolviendo la licencia. Por favor, inténtalo de nuevo.', 'success' => 'Equipo quitado correctamente.' ), diff --git a/resources/lang/es-MX/admin/licenses/table.php b/resources/lang/es-MX/admin/licenses/table.php index 7dda8f145..2d5286e57 100644 --- a/resources/lang/es-MX/admin/licenses/table.php +++ b/resources/lang/es-MX/admin/licenses/table.php @@ -6,9 +6,9 @@ return array( 'checkout' => 'Quita/Asigna', 'deleted_at' => 'Eliminado el', 'id' => 'ID', - 'license_email' => 'Email', + 'license_email' => 'Email de licencia', 'license_name' => 'Licenciado a', - 'purchase_date' => 'Fecha Compra', + 'purchase_date' => 'Fecha de compra', 'purchased' => 'Comprada', 'seats' => 'Instalaciones', 'hardware' => 'Equipo', diff --git a/resources/lang/es-MX/admin/locations/message.php b/resources/lang/es-MX/admin/locations/message.php index d8be3030a..96b7b471e 100644 --- a/resources/lang/es-MX/admin/locations/message.php +++ b/resources/lang/es-MX/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Localización no existente.', - 'assoc_users' => 'Esta localización está asignada al menos a un usuario y no puede ser eliminada. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Esta ubicacion se encuentra actualmente asociada con por lo menos un activo y no puede ser eliminada. Por favor, actualice sus activos para no referenciar esta ubicacion e intentelo de nuevo. ', 'assoc_child_loc' => 'Esta ubicacion actualmente esta asociada con al menos una ubicacion hija y no puede ser eliminada. Por favor, actualice sus ubicaciones para no referenciar esta ubicacion e intentelo de nuevo. ', 'assigned_assets' => 'Recursos asignados', diff --git a/resources/lang/es-MX/admin/locations/table.php b/resources/lang/es-MX/admin/locations/table.php index 127572764..396b04728 100644 --- a/resources/lang/es-MX/admin/locations/table.php +++ b/resources/lang/es-MX/admin/locations/table.php @@ -16,9 +16,9 @@ return [ 'name' => 'Nombre Localización', 'address' => 'Dirección', 'address2' => '2da linea de Dirección', - 'zip' => 'Códio Postal', + 'zip' => 'Código postal', 'locations' => 'Localizaciones', - 'parent' => 'Padre', + 'parent' => 'Ubicación padre', 'currency' => 'Divisa de la Localización', 'ldap_ou' => 'Búsqueda LDAP OU', 'user_name' => 'Nombre de usuario', @@ -32,7 +32,7 @@ return [ 'asset_serial' => 'Número de serie', 'asset_location' => 'Ubicación', 'asset_checked_out' => 'Asignado a', - 'asset_expected_checkin' => 'Fecha Esperada de Devolución', + 'asset_expected_checkin' => 'Fecha esperada de devolución', 'date' => 'Fecha:', 'phone' => 'Teléfono ubicación', 'signed_by_asset_auditor' => 'Firmado por (Auditor de Activos):', diff --git a/resources/lang/es-MX/admin/manufacturers/table.php b/resources/lang/es-MX/admin/manufacturers/table.php index 9e557e0f7..ed228e832 100644 --- a/resources/lang/es-MX/admin/manufacturers/table.php +++ b/resources/lang/es-MX/admin/manufacturers/table.php @@ -10,7 +10,7 @@ return array( 'support_email' => 'Email de soporte', 'support_phone' => 'Teléfono de soporte', 'support_url' => 'URL de soporte', - 'warranty_lookup_url' => 'URL de Búsqueda de Garantía', + 'warranty_lookup_url' => 'URL de búsqueda de garantía', 'update' => 'Actualizar Fabricante', ); diff --git a/resources/lang/es-MX/admin/models/message.php b/resources/lang/es-MX/admin/models/message.php index 67cdaa985..5a8520df4 100644 --- a/resources/lang/es-MX/admin/models/message.php +++ b/resources/lang/es-MX/admin/models/message.php @@ -12,7 +12,7 @@ return array( 'create' => array( 'error' => 'Modelo no creado, Intentalo de nuevo.', 'success' => 'Modelo creado.', - 'duplicate_set' => 'Un modelo de activo con ese nombre, fabricante y número de modelo ya existe.', + 'duplicate_set' => 'Ya existe un modelo de equipo con el mismo nombre, fabricante y número de modelo.', ), 'update' => array( diff --git a/resources/lang/es-MX/admin/models/table.php b/resources/lang/es-MX/admin/models/table.php index 23298d575..1dd16b8e6 100644 --- a/resources/lang/es-MX/admin/models/table.php +++ b/resources/lang/es-MX/admin/models/table.php @@ -6,7 +6,7 @@ return array( 'created_at' => 'Creado el', 'eol' => 'EOL', 'modelnumber' => 'Modelo No.', - 'name' => 'Nombre Modelo', + 'name' => 'Nombre del modelo de activo', 'numassets' => 'Equipos', 'title' => 'Modelos Equipos', 'update' => 'Actualizar Modelo', diff --git a/resources/lang/es-MX/admin/settings/general.php b/resources/lang/es-MX/admin/settings/general.php index f74e85163..7a643b394 100644 --- a/resources/lang/es-MX/admin/settings/general.php +++ b/resources/lang/es-MX/admin/settings/general.php @@ -46,11 +46,11 @@ return [ 'dashboard_message' => 'Mensajes del Panel', 'dashboard_message_help' => 'Este texto aparecerá en el panel para cualquiera que tenga permiso de ver el Panel.', 'default_currency' => 'Moneda Predeterminada', - 'default_eula_text' => 'Términos y condiciones por defecto', + 'default_eula_text' => 'Acuerdo de uso predeterminado', 'default_language' => 'Idioma predeterminado', - 'default_eula_help_text' => 'También puede asociar términos y condiciones personalizados a categorías específicas.', + 'default_eula_help_text' => 'También puede asociar acuerdos de uso personalizados a categorías específicas.', 'acceptance_note' => 'Añada una nota para su decisión (opcional)', - 'display_asset_name' => 'Mostrar Nombre Equipo', + 'display_asset_name' => 'Mostrar nombre del activo', 'display_checkout_date' => 'Mostrar fecha de asignación', 'display_eol' => 'Mostrar EOL', 'display_qr' => 'Mostrar Códigos QR', @@ -60,8 +60,8 @@ return [ 'alt_barcode_type' => 'Tipo de códigos de barras 1D', 'email_logo_size' => 'Los logotipos cuadrados se ven mejor en correo electrónico. ', 'enabled' => 'Habilitado', - 'eula_settings' => 'Configuración de los términos y condiciones', - 'eula_markdown' => 'Estos términos y condiciones permiten markdown estilo Github.', + 'eula_settings' => 'Configuración de los acuerdos de uso', + 'eula_markdown' => 'Estos acuerdos de uso permiten markdown estilo Github.', 'favicon' => 'Favicon', 'favicon_format' => 'Los tipos de archivo aceptados son ico, png y gif. Otros formatos de imagen pueden no funcionar en todos los navegadores.', 'favicon_size' => 'Los favicons deben ser imágenes cuadradas, de 16x16 píxeles.', @@ -69,7 +69,7 @@ return [ 'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Los enlaces son permitidos usando el formato flavored de GitHub. Saltos de línea, cabeceras, imágenes, etc, pueden resultar impredecibles.', 'general_settings' => 'Configuración General', 'general_settings_keywords' => 'soporte de la empresa, firma, aceptación, formato de correo electrónico, formato de nombre de usuario, imágenes, por página, miniatura, eula, acuerdo de licencia de usuario final, términos y condiciones, gravatar, términos de servicio, tablero de indicadores, privacidad', - 'general_settings_help' => 'Términos y condiciones por defecto y más', + 'general_settings_help' => 'Acuerdo de uso predeterminado y más', 'generate_backup' => 'Generar Respaldo', 'google_workspaces' => 'Espacios de trabajo de Google', 'header_color' => 'Color de encabezado', @@ -97,14 +97,14 @@ return [ 'ldap_server_help' => 'Esto debería empezar con ldap:// (sin codificar o TLS) o ldaps:// (para SSL)', 'ldap_server_cert' => 'Certificado de validación SSL LDAP', 'ldap_server_cert_ignore' => 'Permitir certificados SSL inválidos', - 'ldap_server_cert_help' => 'Selecciona este campo si estás usando un certificado SSL auto firmado y quieres aceptar un certificado SSL inválido.', + 'ldap_server_cert_help' => 'Seleccione esta casilla si está utilizando un certificado SSL autofirmado y desea aceptar un certificado SSL inválido.', 'ldap_tls' => 'Usar TLS', 'ldap_tls_help' => 'Esto se debe seleccionar si se está ejecutando STARTTLS en el servidor LDAP. ', 'ldap_uname' => 'Enlazar usuario LDAP', 'ldap_dept' => 'Departamento de Protocolo Ligero de Acceso a Directorio (LDAP)', 'ldap_phone' => 'Número Telefónico LDAP', 'ldap_jobtitle' => 'LDAP Titulo Laboral', - 'ldap_country' => 'LDAP País', + 'ldap_country' => 'País LDAP', 'ldap_pword' => 'Enlazar contraseña LDAP', 'ldap_basedn' => 'Enlazar base DN', 'ldap_filter' => 'Filtro LDAP', @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Longitud de etiquetas de activos, incluyendo relleno de ceros', 'username_format_help' => 'Esta configuración sólo será utilizada por el proceso de importación si no se proporciona un nombre de usuario y tenemos que generar un nombre de usuario para usted.', 'oauth_title' => 'Configuración de la API de OAuth', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Configuración de Endpoint para Oauth', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Actualizar ajustes de etiqueta de activos', 'barcode_title' => 'Actualizar ajustes de código de barras', 'barcodes' => 'Códigos de barras', @@ -362,7 +372,7 @@ return [ 'mail_reply_to' => 'Dirección de respuesta de correo', 'mail_from' => 'Correo desde la dirección', 'database_driver' => 'Controlador de base de datos', - 'bs_table_storage' => 'Almacenamiento de Tabla', + 'bs_table_storage' => 'Almacenamiento de tabla', 'timezone' => 'Timezone', ]; diff --git a/resources/lang/es-MX/admin/statuslabels/message.php b/resources/lang/es-MX/admin/statuslabels/message.php index d6e634c3d..98aa10e8d 100644 --- a/resources/lang/es-MX/admin/statuslabels/message.php +++ b/resources/lang/es-MX/admin/statuslabels/message.php @@ -24,9 +24,9 @@ return [ 'help' => [ 'undeployable' => 'Estos activos no pueden asignarse a nadie.', - 'deployable' => 'Estos activos pueden ser retirados. Una vez estén asignados, asumirán el meta estado de Asignado.', - 'archived' => 'Estos activos no pueden desprotegerse y solo aparecerán en la vista Archivada. Esto es útil para retener información sobre activos para presupuestos / propósitos históricos, pero mantenerlos fuera de la lista de activos del día a día.', - 'pending' => 'Estos activos aún no se pueden asignar a nadie, a menudo se utilizan para artículos que están pendientes de reparación, pero se espera que vuelvan a la circulación.', + 'deployable' => 'Estos activos pueden ser asignados. Una vez estén asignados, asumirán el meta estado de Asignado.', + 'archived' => 'Estos equipos no pueden ser asignados y solo se mostrarán en la vista de Archivados. Esto es útil para mantener información de activos por razones de presupuesto o de revisión histórica y al mismo tiempo se excluyen de los activos que se pueden usar en el día a día.', + 'pending' => 'Estos equipos no pueden ser asignados, suele usarse para ítems que están en reparación, o que se espera que regresen a circulación eventualmente.', ], ]; diff --git a/resources/lang/es-MX/admin/statuslabels/table.php b/resources/lang/es-MX/admin/statuslabels/table.php index bcf4d3928..ec852d517 100644 --- a/resources/lang/es-MX/admin/statuslabels/table.php +++ b/resources/lang/es-MX/admin/statuslabels/table.php @@ -1,15 +1,15 @@ 'Info Etiquetas Estado', + 'about' => 'Acerca de las etiquetas de estado', 'archived' => 'Archivado', 'create' => 'Crear Etiqueta Estado', - 'color' => 'Color de la Gráfica', - 'default_label' => 'Etiqueta Predeterminada', + 'color' => 'Color en el gráfico', + 'default_label' => 'Etiqueta predeterminada', 'default_label_help' => 'Esto se usa para garantizar que las etiquetas de estado que utiliza con más frecuencia aparezcan en la parte superior del cuadro de selección al crear / editar activos.', 'deployable' => 'Utilizable', 'info' => 'Las etiquetas de estado se usan para describir los diferentes estados en que pueden estar sus equipos. Por ejemplo: en reparación, perdidos/robados, etc. Puede crear nuevas etiquetas de estado para equipos utilizables, pendientes o archivados.', - 'name' => 'Estado', + 'name' => 'Nombre de estado', 'pending' => 'Pendiente', 'status_type' => 'Tipo de estado', 'show_in_nav' => 'Mostrar en la barra lateral', diff --git a/resources/lang/es-MX/admin/suppliers/table.php b/resources/lang/es-MX/admin/suppliers/table.php index 26d5b79e8..02804f2fa 100644 --- a/resources/lang/es-MX/admin/suppliers/table.php +++ b/resources/lang/es-MX/admin/suppliers/table.php @@ -7,9 +7,9 @@ return array( 'assets' => 'Equipos', 'city' => 'Ciudad', 'contact' => 'Nombre Contacto', - 'country' => 'Pais', + 'country' => 'País', 'create' => 'Crear Proveedor', - 'email' => 'Email', + 'email' => 'Correo electrónico', 'fax' => 'Fax', 'id' => 'ID', 'licenses' => 'Licencias', @@ -20,7 +20,7 @@ return array( 'suppliers' => 'Proveedores', 'update' => 'Actualizar Proveedor', 'view' => 'Ver Proveedor', - 'view_assets_for' => 'Ver Equipos para', - 'zip' => 'Código Postal', + 'view_assets_for' => 'Ver activos para', + 'zip' => 'Código postal', ); diff --git a/resources/lang/es-MX/admin/users/general.php b/resources/lang/es-MX/admin/users/general.php index 25b7a5c23..79e59bd45 100644 --- a/resources/lang/es-MX/admin/users/general.php +++ b/resources/lang/es-MX/admin/users/general.php @@ -16,13 +16,13 @@ return [ 'restore_user' => 'Haga clic aquí para restaurarlos.', 'last_login' => 'Último acceso', 'ldap_config_text' => 'Las configuraciones de LDAP estàn en: Admin -> Settings. La ubicaciòn seleccionadada sera asignada a todos los usuarios importados.', - 'print_assigned' => 'Imprimir todos los Asignados', - 'email_assigned' => 'Lista de correos de los asignados', + 'print_assigned' => 'Imprimir todos los asignados', + 'email_assigned' => 'Enviar correo con todos los asignados', 'user_notified' => 'Se ha enviado al usuario un correo con la lista de sus articulos asignados.', 'auto_assign_label' => 'Incluye a este usuario al asignar automáticamente licencias elegibles', 'auto_assign_help' => 'Omitir este usuario en la asignación automática de licencias', 'software_user' => 'Software asignado a :name', - 'send_email_help' => 'Debe proporcionar una dirección de correo electrónico para que este usuario para enviar las credenciales. Las credenciales de correo electrónico sólo se pueden hacer en la creación del usuario. Las contraseñas se almacenan en un hash de un solo sentido y no se pueden recuperar una vez guardadas.', + 'send_email_help' => 'Debe proporcionar una dirección de correo electrónico para este usuario para poder enviarle las credenciales. Únicamente pueden enviarse las credenciales por correo eléctronico durante la creación del usuario. Las contraseñas se almacenan en un hash de un solo sentido y no se pueden recuperar una vez guardadas.', 'view_user' => 'Ver Usuario :name', 'usercsv' => 'Archivo CSV', 'two_factor_admin_optin_help' => 'La configuración actual permite la aplicación selectiva de la autenticación de dos factores. ', @@ -40,10 +40,10 @@ return [ 'checkin_user_properties' => 'Recibir todas las propiedades asociadas con estos usuarios', 'remote_label' => 'Este es un usuario remoto', 'remote' => 'Remoto', - 'remote_help' => 'Esto puede ser útil si necesita filtrar por usuarios remotos que nunca o raramente entran en sus ubicaciones físicas.', + 'remote_help' => 'Esto puede ser útil si necesita filtrar por usuarios remotos que nunca o raramente asisten a sus ubicaciones físicas.', 'not_remote_label' => 'Este no es un usuario remoto', 'vip_label' => 'Usuario VIP', - 'vip_help' => 'Esto puede ser útil para marcar a personas importantes en su organización si desea manejarlas de maneras especiales.', + 'vip_help' => 'Esto puede ser útil como indicador de personas importantes en su organización si desea tratarlas de forma especial.', 'create_user' => 'Crear Usuario', 'create_user_page_explanation' => 'Esta es la información de la cuenta que usará para acceder al sitio por primera vez.', 'email_credentials' => 'Credenciales de email', diff --git a/resources/lang/es-MX/admin/users/message.php b/resources/lang/es-MX/admin/users/message.php index 97f477b71..b81cdac8f 100644 --- a/resources/lang/es-MX/admin/users/message.php +++ b/resources/lang/es-MX/admin/users/message.php @@ -11,7 +11,7 @@ return array( 'user_has_no_assets_assigned' => 'No hay activos asignados al usuario.', 'user_password_required' => 'La contraseña es obligatoria.', 'insufficient_permissions' => 'No tiene permiso.', - 'user_deleted_warning' => 'Este usuario ha sido eliminado. Deberá restaurarlo para editarlo o asignarle nuevos Equipos.', + 'user_deleted_warning' => 'Este usuario ha sido eliminado. Tendrá que restaurar este usuario para editarlo o para asignarle nuevos activos.', 'ldap_not_configured' => 'La integración con LDAP no ha sido configurada para esta instalación.', 'password_resets_sent' => 'Los usuarios seleccionados que están activados y tienen una dirección de correo electrónico válida han sido enviados un enlace de restablecimiento de contraseña.', 'password_reset_sent' => '¡Se ha enviado un enlace de restablecimiento de contraseña a :email!', diff --git a/resources/lang/es-MX/admin/users/table.php b/resources/lang/es-MX/admin/users/table.php index 1d59f1133..aa2d64741 100644 --- a/resources/lang/es-MX/admin/users/table.php +++ b/resources/lang/es-MX/admin/users/table.php @@ -7,7 +7,7 @@ return array( 'created_at' => 'Creado', 'createuser' => 'Crear Usuario', 'deny' => 'Denegar', - 'email' => 'Email', + 'email' => 'Correo electrónico', 'employee_num' => 'No. Empleado', 'first_name' => 'Nombre', 'groupnotes' => 'Selecciona un grupo para asignar al usuario, recuerda que un usuario toma los permisos del grupo al que están asignados. Usa ctrl+clic (o cmd+clic en MacOS) para deseleccionar grupos.', @@ -18,7 +18,7 @@ return array( 'last_name' => 'Apellidos', 'location' => 'Localización', 'lock_passwords' => 'Los detalles de acceso no pueden ser cambiados en esta instalación.', - 'manager' => 'Responsable', + 'manager' => 'Supervisor', 'managed_locations' => 'Ubicaciones gestionadas', 'managed_users' => 'Usuarios gestionados', 'name' => 'Usuario', diff --git a/resources/lang/es-MX/auth/general.php b/resources/lang/es-MX/auth/general.php index da077c946..18adff364 100644 --- a/resources/lang/es-MX/auth/general.php +++ b/resources/lang/es-MX/auth/general.php @@ -2,7 +2,7 @@ return [ 'send_password_link' => 'Enviar enlace de restablecimiento de contraseña', - 'email_reset_password' => 'Enviar correo para restablecer contraseña', + 'email_reset_password' => 'Enviar correo', 'reset_password' => 'Restablecer Contraseña', 'saml_login' => 'Iniciar sesión a través de SAML', 'login' => 'Iniciar Sesión', diff --git a/resources/lang/es-MX/button.php b/resources/lang/es-MX/button.php index d4cfc9285..f2b910249 100644 --- a/resources/lang/es-MX/button.php +++ b/resources/lang/es-MX/button.php @@ -4,7 +4,7 @@ return [ 'actions' => 'Acciones', 'add' => 'Agregar nuevo', 'cancel' => 'Cancelar', - 'checkin_and_delete' => 'Reingresar todo / Eliminar Usuario', + 'checkin_and_delete' => 'Devolver todo / Eliminar usuario', 'delete' => 'Borrar', 'edit' => 'Editar', 'restore' => 'Restaurar', @@ -12,8 +12,8 @@ return [ 'request' => 'Solicitud', 'submit' => 'Enviar', 'upload' => 'Cargar', - 'select_file' => 'Seleccionar Archivo...', - 'select_files' => 'Select Files...', + 'select_file' => 'Seleccione un archivo...', + 'select_files' => 'Seleccionar archivos...', 'generate_labels' => '{1} Generar Etiqueta|[2,*] Generar Etiquetas', 'send_password_link' => 'Enviar enlace de restablecimiento de contraseña', 'go' => 'Ir', diff --git a/resources/lang/es-MX/general.php b/resources/lang/es-MX/general.php index f5568b66c..b16534103 100644 --- a/resources/lang/es-MX/general.php +++ b/resources/lang/es-MX/general.php @@ -6,9 +6,9 @@ return [ 'activated' => 'Activado', 'accepted_date' => 'Fecha de aceptación', 'accessory' => 'Accesorio', - 'accessory_report' => 'Reporte de Accesorios', + 'accessory_report' => 'Informe de accesorios', 'action' => 'Acción', - 'activity_report' => 'Reporte de Actividad', + 'activity_report' => 'Informe de actividad', 'address' => 'Dirección', 'admin' => 'Admin', 'admin_tooltip' => 'Este usuario tiene privilegios de superadministrador', @@ -45,13 +45,13 @@ return [ 'bad_data' => 'Ningún resultado. ¿Quizá un dato incorrecto?', 'bulkaudit' => 'Auditoría masiva', 'bulkaudit_status' => 'Estado de auditoría', - 'bulk_checkout' => 'Procesar en Lote', + 'bulk_checkout' => 'Asignación masiva', 'bulk_edit' => 'Editar en grupo', 'bulk_delete' => 'Eliminar en grupo', 'bulk_actions' => 'Acciones masivas', 'bulk_checkin_delete' => 'Hacer Checkin / Eliminar usuarios en masa', 'byod' => 'BYOD', - 'byod_help' => 'Este equipo es propiedad del usuario', + 'byod_help' => 'Este dispositivo es propiedad del usuario', 'bystatus' => 'por Estado', 'cancel' => 'Cancelar', 'categories' => 'Categorías', @@ -59,15 +59,15 @@ return [ 'change' => 'Entrada / salida', 'changeemail' => 'Cambiar Email', 'changepassword' => 'Cambiar Password', - 'checkin' => 'Quitar Equipo', + 'checkin' => 'Devolver', 'checkin_from' => 'Devolución de', - 'checkout' => 'Asignar a un usuario', - 'checkouts_count' => 'Checkouts', - 'checkins_count' => 'Checkins', + 'checkout' => 'Asignar', + 'checkouts_count' => 'Asignaciones', + 'checkins_count' => 'Devoluciones', 'user_requests_count' => 'Requests', 'city' => 'Ciudad', 'click_here' => 'Pulsa aquí', - 'clear_selection' => 'Eliminar Selección', + 'clear_selection' => 'Borrar selección', 'companies' => 'Empresas', 'company' => 'Empresa', 'component' => 'Componente', @@ -75,10 +75,10 @@ return [ 'complete' => 'Completo', 'consumable' => 'Consumible', 'consumables' => 'Consumibles', - 'country' => 'Pais', + 'country' => 'País', 'could_not_restore' => 'Error al restaurar :item_type: :error', 'not_deleted' => 'El :item_type no está borrado por lo que no puede ser restaurado', - 'create' => 'Crear Localización', + 'create' => 'Crear nuevo', 'created' => 'Artículo creado', 'created_asset' => 'equipo creado', 'created_at' => 'Fecha de creación', @@ -104,14 +104,14 @@ return [ 'deletion_failed' => 'Error al eliminar', 'departments' => 'Departamentos', 'department' => 'Departamento', - 'deployed' => 'Asignados-', + 'deployed' => 'Asignados', 'depreciation' => 'Amortización', 'depreciations' => 'Depreciaciones', 'depreciation_report' => 'Informe de amortización', 'details' => 'Detalles', 'download' => 'Descargar', 'download_all' => 'Descargar todo', - 'editprofile' => 'Editar Perfil', + 'editprofile' => 'Editar perfil', 'eol' => 'EOL', 'email_domain' => 'Dominio de correo electrónico', 'email_format' => 'Formato de correo electrónico', @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Apellido Primera Inicial Nombre (smith_j@ejemplo.com)', 'firstinitial.lastname' => 'Primera inicial Nombre Apellido (j.smith@ejemplo.com)', 'firstnamelastinitial' => 'Nombre Primera Inicial Apellido (janes@ejemplo.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Nombre', 'first_name_format' => 'Primer Nombre (jane@ejemplo.com)', 'files' => 'Archivos', @@ -153,8 +154,8 @@ return [ 'id' => 'Id', 'image' => 'Imagen', 'image_delete' => 'Borrar imagen', - 'include_deleted' => 'Inlcuir activos eliminados', - 'image_upload' => 'Enviar imagen', + 'include_deleted' => 'Incluir activos eliminados', + 'image_upload' => 'Cargar imagen', 'filetypes_accepted_help' => 'El tipo de archivo aceptado es :types. El tamaño máximo permitido es :size.|Los tipos de archivo aceptados son :types. El tamaño máximo permitido es :size.', 'filetypes_size_help' => 'El tamaño máximo de carga permitido es :size.', 'image_filetypes_help' => 'Los tipos de archivo aceptados son jpg, webp, png, gif y svg. El tamaño máximo permitido es :size.', @@ -163,10 +164,10 @@ return [ 'import_this_file' => 'Mapear campos y procesar este archivo', 'importing' => 'Importando', 'importing_help' => 'Puede importar activos, accesorios, licencias, componentes, consumibles y usuarios a través de un archivo CSV.

El CSV debe estar delimitado por comas y con formato de encabezados que coincidan con el archivo CSV de muestra en la documentación.', - 'import-history' => 'Historial de Importación', + 'import-history' => 'Importar historial', 'asset_maintenance' => 'Mantenimiento de Equipo', 'asset_maintenance_report' => 'Informe mantenimiento de activos', - 'asset_maintenances' => 'Mantenimientos de Equipo', + 'asset_maintenances' => 'Mantenimiento de activos', 'item' => 'Item', 'item_name' => 'Nombre del elemento', 'import_file' => 'importar archivo CSV', @@ -214,11 +215,11 @@ return [ 'no_results' => 'Sin Resultados.', 'no' => 'No', 'notes' => 'Notas', - 'order_number' => 'Nùmero de orden', + 'order_number' => 'Número de orden', 'only_deleted' => 'Solo activos eliminados', 'page_menu' => 'Mostrando elementos de _MENU_', 'pagination_info' => 'Mostrando _START_ de _END_ de elementos _TOTAL_', - 'pending' => 'Equipo Pendiente', + 'pending' => 'Pendientes', 'people' => 'Usuarios', 'per_page' => 'Resultados Por Pag', 'previous' => 'Previo', @@ -228,7 +229,7 @@ return [ 'purchase_date' => 'Fecha de compra', 'qty' => 'Cant', 'quantity' => 'Cantidad', - 'quantity_minimum' => 'Tienes :count artículos por debajo o casi por debajo de los niveles mínimos de cantidad', + 'quantity_minimum' => 'Tiene :count artículos por debajo o casi por debajo de los niveles mínimos de cantidad', 'quickscan_checkin' => 'Escaneo rápido de entrada', 'quickscan_checkin_status' => 'Estado de registro', 'ready_to_deploy' => 'Listo para asignar', @@ -254,16 +255,16 @@ return [ 'select_category' => 'Seleccione una categoría', 'select_datasource' => 'Seleccione un datoscópico', 'select_department' => 'Seleccione un departamento', - 'select_depreciation' => 'Seleccionar un tipo de Amortización', - 'select_location' => 'Seleccionar una Ubicación', - 'select_manufacturer' => 'Seleccionar un Fabricante', - 'select_model' => 'Seleccionar un Modelo', - 'select_supplier' => 'Seleccionar un Proveedor', - 'select_user' => 'Seleccionar un usuario', - 'select_date' => 'Seleccione Fecha (AAAA-MM-DD)', - 'select_statuslabel' => 'Seleccionar Estado', - 'select_company' => 'Seleccionar empresa', - 'select_asset' => 'Seleccionar activos', + 'select_depreciation' => 'Seleccionar un tipo de amortización', + 'select_location' => 'Seleccione una ubicación', + 'select_manufacturer' => 'Seleccione un fabricante', + 'select_model' => 'Seleccione un modelo', + 'select_supplier' => 'Seleccione un proveedor', + 'select_user' => 'Seleccione un usuario', + 'select_date' => 'Seleccione fecha (AAAA-MM-DD)', + 'select_statuslabel' => 'Seleccione un estado', + 'select_company' => 'Seleccione una empresa', + 'select_asset' => 'Seleccionar activo', 'settings' => 'Opciones', 'show_deleted' => 'Mostrar Eliminado', 'show_current' => 'Mostrar actual', @@ -308,23 +309,23 @@ return [ 'users' => 'Usuarios', 'viewall' => 'Ver todos', 'viewassets' => 'Ver elementos asignados', - 'viewassetsfor' => 'Ver activos de :name', + 'viewassetsfor' => 'Ver activos para :name', 'website' => 'Sitio web', 'welcome' => 'Bienvenido, :name', 'years' => 'años', 'yes' => 'Si', - 'zip' => 'Códio Postal', + 'zip' => 'Código postal', 'noimage' => 'Imagen no subida o imagen no encontrada.', 'file_does_not_exist' => 'El archivo solicitado no existe en el servidor.', 'file_upload_success' => '¡Archivo cargado exitosamente!', 'no_files_uploaded' => '¡Archivo cargado exitosamente!', 'token_expired' => 'Su sesión ha caducado. Por favor, inténtelo de nuevo.', 'login_enabled' => 'Inicio de sesión activado', - 'audit_due' => 'Para Auditoria', - 'audit_due_days' => 'Activos vencidos para auditoría dentro de :days Día|Activos vencidos para auditoría dentro de :days Días', - 'checkin_due' => 'Vence por Checkin', - 'checkin_overdue' => 'Atrasado para Checkin', - 'checkin_due_days' => 'Activos vencidos por cheque dentro de :days día|Activos vencidos por cheque dentro de :days días', + 'audit_due' => 'Vence la auditoría', + 'audit_due_days' => 'Activos pendientes para auditoría dentro de :days día|Activos pendientes para auditoría dentro de :days días', + 'checkin_due' => 'Pendiente por devolver', + 'checkin_overdue' => 'Atrasado por devolver', + 'checkin_due_days' => 'Activos que deben ser devueltos dentro de :days día|Activos que deben ser devueltos dentro de :days días', 'audit_overdue' => 'Atrasado para la auditoría', 'accept' => 'Aceptar :asset', 'i_accept' => 'Acepto', @@ -336,7 +337,7 @@ return [ 'hide_help' => 'Ocultar ayuda', 'view_all' => 'ver todo', 'hide_deleted' => 'Ocultar eliminados', - 'email' => 'Email', + 'email' => 'Correo electrónico', 'do_not_change' => 'No cambiar', 'bug_report' => 'Reportar un error', 'user_manual' => 'Manual del usuario', @@ -358,8 +359,8 @@ return [ 'reminder_checked_out_items' => 'Este es un recordatorio de los artículos actualmente asignados a usted. Si cree que esta lista es incorrecta, (falta algo o algo que está aqui nunca fue recibido), por favor envie un email a :reply_to_name en :reply_to_address.', 'changed' => 'Cambiado', 'to' => 'Para', - 'report_fields_info' => '

Elija los campos que desa incluir en su informe personalizado, y haga click en Generar. El archivo (custom-asset-report-YYYY-mm-dd,csv) se descargará automáticamente, y puede abrirlo en Excel.

-

Si desea exportar solo ciertos activos, use las siguientes opciones para afinar los resultados.

', + 'report_fields_info' => '

Seleccione los campos que desea incluir en su informe personalizado y haga clic en Generar. El archivo (custom-asset-report-YYYY-mm-dd.csv) se descargará automáticamente y puede abrirlo en Excel.

+

Si desea exportar sólo ciertos activos, utilice las siguientes opciones para afinar sus resultados.

', 'range' => 'Rango', 'bom_remark' => 'Añadir un BOM (signo de orden de byte) a este CSV', 'improvements' => 'Mejoras', @@ -374,13 +375,13 @@ return [ 'license_serial' => 'Número de Serie/Clave de Producto', 'invalid_category' => 'Categoría no válida o ausente', 'invalid_item_category_single' => 'Falta o no válida :type categoría. Por favor actualiza la categoría de este :type para incluir una categoría válida antes de salir.', - 'dashboard_info' => 'Este es tu panel de control. Hay muchos parecidos, pero este es el tuyo.', + 'dashboard_info' => 'Este es su panel de control. Hay muchos similares, pero este es suyo.', '60_percent_warning' => '60% completo (advertencia)', - 'dashboard_empty' => 'Parece que no has agregado nada todavía, así que no tenemos nada increíble para mostrar. ¡Comienza añadiendo algunos activos, accesorios, consumibles o licencias ahora!', + 'dashboard_empty' => 'Parece que aún no ha añadido nada, así que no tenemos nada impresionante que mostrar. ¡Comience añadiendo algunos activos, accesorios, consumibles o licencias ahora!', 'new_asset' => 'Nuevo activo', - 'new_license' => 'Nueva Licencia', + 'new_license' => 'Nueva licencia', 'new_accessory' => 'Nuevo accesorio', - 'new_consumable' => 'Nuevo Consumible', + 'new_consumable' => 'Nuevo consumible', 'collapse' => 'Contraer', 'assigned' => 'Asignado', 'asset_count' => 'Cantidad de activos', @@ -402,9 +403,9 @@ return [ 'accessory_information' => 'Información del accesorio:', 'accessory_name' => 'Nombre de accesorio:', 'clone_item' => 'Clonar objeto', - 'checkout_tooltip' => 'Registrar salida de este elemento', + 'checkout_tooltip' => 'Asignar este elemento', 'checkin_tooltip' => 'Devuelva este elemento para que esté disponible para resignar, borrar, etc.', - 'checkout_user_tooltip' => 'Revisa este elemento a un usuario', + 'checkout_user_tooltip' => 'Asignar este elemento a un usuario', 'checkin_to_diff_location' => 'Puede optar por registrar este activo en una ubicación distinta a la predeterminada :default_location, si es que existe una configurada', 'maintenance_mode' => 'El servicio no está disponible temporalmente debido a actualizaciones del sistema. Por favor, vuelva más tarde.', 'maintenance_mode_title' => 'Sistema temporalmente no disponible', @@ -522,7 +523,7 @@ return [ 'action_source' => 'Fuente de acción', 'or' => 'o', 'url' => 'URL', - 'edit_fieldset' => 'Editar campos y opciones de campos', + 'edit_fieldset' => 'Editar campos y opciones de grupos de campos', 'permission_denied_superuser_demo' => 'Permiso denegado. No puede actualizar la información de usuario para superadministradores en la demo.', 'pwd_reset_not_sent' => 'El usuario no está activado, está sincronizado con LDAP o no tiene una dirección de correo electrónico', 'error_sending_email' => 'Error al enviar email', @@ -537,7 +538,7 @@ return [ 'partial' => 'Eliminado :success_count :object_type, pero :error_count :object_type no pudo ser eliminado', ], ], - 'no_requestable' => 'No hay activos o modelos de activos solicitables.', + 'no_requestable' => 'No hay activos o modelos de activos que puedan solicitarse.', 'countable' => [ 'accessories' => ':count Accesorio|:count Accesorios', diff --git a/resources/lang/es-MX/help.php b/resources/lang/es-MX/help.php index ef7411e2e..c5b1104f1 100644 --- a/resources/lang/es-MX/help.php +++ b/resources/lang/es-MX/help.php @@ -29,7 +29,7 @@ return [ 'consumables' => 'Los consumibles son cualquier cosa comprada que se usará con el tiempo. Por ejemplo, tinta de impresora o papel copiador.', - 'depreciations' => 'Puede configurar depreciaciones de activos para depreciar activos basados en una depreciación lineal.', + 'depreciations' => 'Puede configurar la depreciación de activos usando un método de línea recta.', 'empty_file' => 'El importador detecta que este archivo está vacío.' ]; diff --git a/resources/lang/es-VE/account/general.php b/resources/lang/es-VE/account/general.php index 41b1df2b2..7e637a3be 100644 --- a/resources/lang/es-VE/account/general.php +++ b/resources/lang/es-VE/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Claves API personales', - 'api_key_warning' => 'Al generar un token API, asegúrate de copiarlo inmediatamente ya que ellos - no serán visibles para ti de nuevo.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'La url base de tu API se encuentra en:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'Los tokens de la API están establecidos para expirar en:', - 'api_reference' => 'Por favor, revise la referencia API a - para encontrar puntos finales específicos de la API y documentación adicional de la API.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Cuenta actualizada exitosamente', ); diff --git a/resources/lang/es-VE/admin/accessories/general.php b/resources/lang/es-VE/admin/accessories/general.php index f093143a6..df37432f6 100644 --- a/resources/lang/es-VE/admin/accessories/general.php +++ b/resources/lang/es-VE/admin/accessories/general.php @@ -1,21 +1,21 @@ 'Categoría de Accesorios', + 'accessory_category' => 'Categoría de accesorio', 'accessory_name' => 'Nombre de Accesorio', 'checkout' => 'Accesorio de Salida', 'checkin' => 'Accesorio de Entrada', 'create' => 'Crear Accesorio', 'edit' => 'Editar Accesorio', - 'eula_text' => 'Términos y condiciones de la categoría', + 'eula_text' => 'Acuerdo de uso de la categoría', 'eula_text_help' => 'Este campo permite personalizar los términos y condiciones para tipos específicos de activos. Si solo tiene unos términos y condiciones para todos sus activos, puede seleccionar la siguiente opción para usar el valor por defecto.', 'require_acceptance' => 'Pedir a los usuarios confirmación de aceptación de los elementos en esta categoría.', 'no_default_eula' => 'No se encontraron términos y condiciones por defecto. Agregue unos en Configuración.', 'total' => 'Total', 'remaining' => 'Disponibles', 'update' => 'Actualizar Accesorio', - 'use_default_eula' => 'En su lugar, use los términos y condiciones por defecto.', - 'use_default_eula_disabled' => 'En su lugar, use los términos y condiciones por defecto. No están configurados términos y condiciones defecto. Por favor agregue unos en Configuración.', + 'use_default_eula' => 'En su lugar, el acuerdo de uso predeterminado.', + 'use_default_eula_disabled' => 'En su lugar, use el acuerdo de uso predeterminado. No está configurado el acuerdo de uso predeterminado. Por favor agregue uno en Configuración.', 'clone' => 'Clonar accesorio', 'delete_disabled' => 'Este accesorio no se puede eliminar aún porque algunos artículos todavía están retirados.', diff --git a/resources/lang/es-VE/admin/accessories/table.php b/resources/lang/es-VE/admin/accessories/table.php index ffc943fa4..c14fd29c8 100644 --- a/resources/lang/es-VE/admin/accessories/table.php +++ b/resources/lang/es-VE/admin/accessories/table.php @@ -2,7 +2,7 @@ return array( 'dl_csv' => 'Descargar CSV', - 'eula_text' => 'Términos y condiciones', + 'eula_text' => 'Acuerdo de uso', 'id' => 'Identificación', 'require_acceptance' => 'Aceptación', 'title' => 'Nombre del Accesorio', diff --git a/resources/lang/es-VE/admin/asset_maintenances/general.php b/resources/lang/es-VE/admin/asset_maintenances/general.php index 540a6d8ff..3eef8459e 100644 --- a/resources/lang/es-VE/admin/asset_maintenances/general.php +++ b/resources/lang/es-VE/admin/asset_maintenances/general.php @@ -1,7 +1,7 @@ 'Mantenimientos de Activos', + 'asset_maintenances' => 'Mantenimiento de activos', 'edit' => 'Editar Mantenimiento de Activos', 'delete' => 'Borrar Mantenimiento de Activos', 'view' => 'Ver Detalles de Mantenimiento de Activo', diff --git a/resources/lang/es-VE/admin/asset_maintenances/table.php b/resources/lang/es-VE/admin/asset_maintenances/table.php index 628c4bb8f..c0cf62380 100644 --- a/resources/lang/es-VE/admin/asset_maintenances/table.php +++ b/resources/lang/es-VE/admin/asset_maintenances/table.php @@ -2,7 +2,7 @@ return [ 'title' => 'Mantenimiento de Activo', - 'asset_name' => 'Nombre de Activo', + 'asset_name' => 'Nombre del activo', 'is_warranty' => 'Garantía', 'dl_csv' => 'Descargar CSV', ]; diff --git a/resources/lang/es-VE/admin/categories/general.php b/resources/lang/es-VE/admin/categories/general.php index df55ee369..3e0ddf7ea 100644 --- a/resources/lang/es-VE/admin/categories/general.php +++ b/resources/lang/es-VE/admin/categories/general.php @@ -8,18 +8,18 @@ return array( 'clone' => 'Clonar categoría', 'create' => 'Crear categoría', 'edit' => 'Editar categoría', - 'email_will_be_sent_due_to_global_eula' => 'Se enviará un correo electrónico al usuario porque se están utilizando los términos y condiciones globales.', - 'email_will_be_sent_due_to_category_eula' => 'Se enviará un correo electrónico al usuario porque se han establecido términos y condiciones para esta categoría.', - 'eula_text' => 'Términos y condiciones de la categoría', - 'eula_text_help' => 'Este campo permite personalizar los términos y condiciones para tipos específicos de activos. Si solo tiene unos términos y condiciones para todos sus activos, puede seleccionar la siguiente opción para usar la definición por defecto.', - 'name' => 'Nombre de la Categoría', + 'email_will_be_sent_due_to_global_eula' => 'Se enviará un correo electrónico al usuario porque se está utilizando el acuerdo de uso global.', + 'email_will_be_sent_due_to_category_eula' => 'Se enviará un correo electrónico al usuario porque se ha establecido un acuerdo de uso para esta categoría.', + 'eula_text' => 'Acuerdo de uso de la categoría', + 'eula_text_help' => 'Este campo permite personalizar el acuerdo de uso para tipos específicos de activos. Si solo tiene un acuerdo de uso para todos sus activos, puede seleccionar la siguiente opción para usar la definición predeterminada.', + 'name' => 'Nombre de la categoría', 'require_acceptance' => 'Requerir a los usuarios que confirmen la aceptación de los elementos en esta categoría.', 'required_acceptance' => 'Este usuario recibirá un correo electrónico con un enlace para confirmar la aceptación de este elemento.', - 'required_eula' => 'Se enviará un correo electrónico a este usuario con una copia de los términos y condiciones', - 'no_default_eula' => 'No se encontró definición de los términos y condiciones por defecto. Agregue unos en Configuración.', + 'required_eula' => 'Se enviará un correo electrónico a este usuario con una copia del acuerdo de uso', + 'no_default_eula' => 'No se encontró una definición del acuerdo de uso por defecto. Agregue uno en Configuración.', 'update' => 'Actualizar categoría', - 'use_default_eula' => 'En su lugar, use los términos y condiciones por defecto.', - 'use_default_eula_disabled' => 'En su lugar, use los términos y condicione por defecto. No se han establecido términos y condiciones por defecto. Por favor agregue unos en Configuración.', - 'use_default_eula_column' => 'Usar los términos y condiciones por defecto', + 'use_default_eula' => 'En su lugar, utilice el acuerdo de uso predeterminado.', + 'use_default_eula_disabled' => 'En su lugar, utilice el acuerdo de uso predeterminado. No se ha establecido el acuerdo de uso predeterminado. Por favor agregue uno en Configuración.', + 'use_default_eula_column' => 'Utilizar el acuerdo de uso predeterminado', ); diff --git a/resources/lang/es-VE/admin/categories/table.php b/resources/lang/es-VE/admin/categories/table.php index dc6e46e14..b99c0f335 100644 --- a/resources/lang/es-VE/admin/categories/table.php +++ b/resources/lang/es-VE/admin/categories/table.php @@ -1,7 +1,7 @@ 'Términos y condiciones', + 'eula_text' => 'Acuerdo de uso', 'id' => 'Identificación', 'parent' => 'Padre', 'require_acceptance' => 'Aceptación', diff --git a/resources/lang/es-VE/admin/companies/general.php b/resources/lang/es-VE/admin/companies/general.php index 83679e258..603f03ee5 100644 --- a/resources/lang/es-VE/admin/companies/general.php +++ b/resources/lang/es-VE/admin/companies/general.php @@ -1,7 +1,7 @@ 'Seleccionar Compañía', + 'select_company' => 'Seleccione una empresa', 'about_companies' => 'Acerca de las empresas', 'about_companies_description' => ' Puede utilizar las empresas como un simple campo informativo, o puede utilizarlas para restringir la visibilidad y la disponibilidad de los activos a los usuarios con una empresa específica, esto se hace habilitando la opción de "Soporte completo a varias empresas" en la "Configuración de administrador"', ]; diff --git a/resources/lang/es-VE/admin/components/general.php b/resources/lang/es-VE/admin/components/general.php index c4f3de536..0e2ae09c3 100644 --- a/resources/lang/es-VE/admin/components/general.php +++ b/resources/lang/es-VE/admin/components/general.php @@ -7,10 +7,10 @@ return array( 'cost' => 'Costo de Compra', 'create' => 'Crear Componente', 'edit' => 'Editar Componente', - 'date' => 'Fecha de Compra', - 'order' => 'Número de Orden', + 'date' => 'Fecha de compra', + 'order' => 'Número de orden', 'remaining' => 'Restante', 'total' => 'Total', 'update' => 'Actualizar Componente', - 'checkin_limit' => 'El importe facturado debe ser igual o menor que :assigned_qty' + 'checkin_limit' => 'La cantidad devuelta debe ser igual o menor que :assigned_qty' ); diff --git a/resources/lang/es-VE/admin/consumables/message.php b/resources/lang/es-VE/admin/consumables/message.php index e05f6b1e1..143481407 100644 --- a/resources/lang/es-VE/admin/consumables/message.php +++ b/resources/lang/es-VE/admin/consumables/message.php @@ -16,19 +16,19 @@ return array( 'delete' => array( 'confirm' => '¿Estás seguro de que deseas borrar este consumible?', - 'error' => 'Hubo un problema borrando el consumible. Por favor inténtalo de nuevo.', + 'error' => 'Hubo un problema al eliminar el consumible. Por favor inténtelo de nuevo.', 'success' => 'El consumible fue borrado con éxito.' ), 'checkout' => array( - 'error' => 'El consumible no fue retirado, por favor inténtelo de nuevo', + 'error' => 'El consumible no fue asignado, por favor inténtelo de nuevo', 'success' => 'El consumible fue retirado con éxito.', 'user_does_not_exist' => 'El usuario es inválido. Por favor, inténtelo de nuevo.', 'unavailable' => 'No hay suficientes consumibles para este pago. Por favor, compruebe la cantidad restante. ', ), 'checkin' => array( - 'error' => 'El consumible no fue ingresado, por favor, inténtelo de nuevo', + 'error' => 'Consumible no fue devuelto, por favor inténtelo de nuevo', 'success' => 'El consumible fue ingresado con éxito.', 'user_does_not_exist' => 'El usuario es inválido. Por favor inténtelo de nuevo.' ) diff --git a/resources/lang/es-VE/admin/custom_fields/general.php b/resources/lang/es-VE/admin/custom_fields/general.php index 84ffd5dcb..096e87bdd 100644 --- a/resources/lang/es-VE/admin/custom_fields/general.php +++ b/resources/lang/es-VE/admin/custom_fields/general.php @@ -4,16 +4,16 @@ return [ 'custom_fields' => 'Campos personalizados', 'manage' => 'Gestionar', 'field' => 'Campo', - 'about_fieldsets_title' => 'Acerca de Fieldsets', - 'about_fieldsets_text' => 'Los conjuntos de campos le permiten crear grupos de campos personalizados que se reutilizan con frecuencia para tipos de modelos de activos específicos.', + 'about_fieldsets_title' => 'Acerca de los grupos de campos', + 'about_fieldsets_text' => 'Los grupos de campos le permiten agrupar campos personalizados que se reutilizan frecuentemente para determinados modelos de activos.', 'custom_format' => 'Formato de expresion regular personalizada...', 'encrypt_field' => 'Encriptar el valor de este campo en la base de datos', 'encrypt_field_help' => 'ADVERTENCIA: Encriptar un campo hace que no pueda ser buscado.', 'encrypted' => 'Encriptado', - 'fieldset' => 'Grupo de Campos', - 'qty_fields' => 'Campos de Cantidad', - 'fieldsets' => 'Grupo de Campos', - 'fieldset_name' => 'Nombre del Grupo de Campos', + 'fieldset' => 'Grupo de campos', + 'qty_fields' => 'Campos de cantidad', + 'fieldsets' => 'Grupo de campos', + 'fieldset_name' => 'Nombre del grupo de campos', 'field_name' => 'Nombre del Campo', 'field_values' => 'Valores del Campo', 'field_values_help' => 'Añadir opciones seleccionables, una por línea. Líneas en blanco además de la primera serán ignoradas.', @@ -26,9 +26,9 @@ return [ 'req' => 'Obl.', 'used_by_models' => 'Usado por Modelos', 'order' => 'Orden', - 'create_fieldset' => 'Nuevo Fieldset', - 'update_fieldset' => 'Actualizar conjunto de campos', - 'fieldset_does_not_exist' => 'Fieldset :id no existe', + 'create_fieldset' => 'Nuevo grupo de campos', + 'update_fieldset' => 'Actualizar grupo de campos', + 'fieldset_does_not_exist' => 'El grupo de campos :id no existe', 'fieldset_updated' => 'Conjunto de campos actualizado', 'create_fieldset_title' => 'Crear un nuevo conjunto de campos', 'create_field' => 'Nuevo Campo Personalizado', diff --git a/resources/lang/es-VE/admin/departments/table.php b/resources/lang/es-VE/admin/departments/table.php index 87fce0740..8d97ccac1 100644 --- a/resources/lang/es-VE/admin/departments/table.php +++ b/resources/lang/es-VE/admin/departments/table.php @@ -4,7 +4,7 @@ return array( 'id' => 'Identificación', 'name' => 'Nombre de Departamento', - 'manager' => 'Gerente', + 'manager' => 'Supervisor', 'location' => 'Ubicación', 'create' => 'Crear departamento', 'update' => 'Actualizar Departamento', diff --git a/resources/lang/es-VE/admin/depreciations/general.php b/resources/lang/es-VE/admin/depreciations/general.php index 69dcfb076..af587e734 100644 --- a/resources/lang/es-VE/admin/depreciations/general.php +++ b/resources/lang/es-VE/admin/depreciations/general.php @@ -1,11 +1,11 @@ 'Sobre Depreciación de Activos', - 'about_depreciations' => 'Puedes configurar la depreciación de activos para depreciar activos basados en una depreciación en línea recta.', - 'asset_depreciations' => 'Depreciación de Activos', - 'create' => 'Crear Depreciación', - 'depreciation_name' => 'Nombre de Depreciación', + 'about_asset_depreciations' => 'Sobre depreciación de activos', + 'about_depreciations' => 'Puede configurar la depreciación de activos usando un método de línea recta.', + 'asset_depreciations' => 'Depreciación de activos', + 'create' => 'Crear depreciación', + 'depreciation_name' => 'Nombre de depreciación', 'depreciation_min' => 'Valor del piso de la depreciación', 'number_of_months' => 'Número de Meses', 'update' => 'Actualizar Depreciación', diff --git a/resources/lang/es-VE/admin/hardware/form.php b/resources/lang/es-VE/admin/hardware/form.php index b57d12dcc..65e9f5fac 100644 --- a/resources/lang/es-VE/admin/hardware/form.php +++ b/resources/lang/es-VE/admin/hardware/form.php @@ -15,16 +15,16 @@ return [ 'bulk_update_custom_field_unique' => 'Este es un campo único y no puede ser editado a granel.', 'checkedout_to' => 'Asignado A', 'checkout_date' => 'Fecha de asignación', - 'checkin_date' => 'Fecha de Ingreso', + 'checkin_date' => 'Fecha de devolución', 'checkout_to' => 'Asignar A', 'cost' => 'Costo de Compra', 'create' => 'Crear Activo', - 'date' => 'Fecha de Compra', + 'date' => 'Fecha de compra', 'depreciation' => 'Depreciación', 'depreciates_on' => 'Se Deprecia En', - 'default_location' => 'Ubicación Predeterminada', + 'default_location' => 'Ubicación predeterminada', 'default_location_phone' => 'Teléfono de ubicación por defecto', - 'eol_date' => 'Fecha de Fin de Vida', + 'eol_date' => 'Fecha fin de soporte (EOL)', 'eol_rate' => 'Tasa de Fin de Vida', 'expected_checkin' => 'Fecha esperada de devolución', 'expires' => 'Vence', @@ -34,15 +34,15 @@ return [ 'manufacturer' => 'Fabricante', 'model' => 'Modelo', 'months' => 'meses', - 'name' => 'Nombre de Activo', + 'name' => 'Nombre del activo', 'notes' => 'Notas', - 'order' => 'Número de Orden', + 'order' => 'Número de orden', 'qr' => 'Código QR', 'requestable' => 'Los usuarios pueden solicitar este elemento', 'redirect_to_all' => 'Return to all :type', 'redirect_to_type' => 'Ir a :type', 'redirect_to_checked_out_to' => 'Go to Checked Out to', - 'select_statustype' => 'Seleccionar Tipo de Estado', + 'select_statustype' => 'Seleccione un tipo de estado', 'serial' => 'Serial', 'status' => 'Estado', 'tag' => 'Etiqueta de Activo', diff --git a/resources/lang/es-VE/admin/hardware/general.php b/resources/lang/es-VE/admin/hardware/general.php index 77f9b7f08..2420c90a5 100644 --- a/resources/lang/es-VE/admin/hardware/general.php +++ b/resources/lang/es-VE/admin/hardware/general.php @@ -6,14 +6,14 @@ return [ 'archived' => 'Archivado', 'asset' => 'Activo', 'bulk_checkout' => 'Activos de pago', - 'bulk_checkin' => 'Checkin Assets', - 'checkin' => 'Ingresar Activo', + 'bulk_checkin' => 'Devolver activos', + 'checkin' => 'Devolver activo', 'checkout' => 'Retirar Activo', - 'clone' => 'Clonar Activo', + 'clone' => 'Clonar activo', 'deployable' => 'Utilizable', 'deleted' => 'Este activo fue eliminado.', 'delete_confirm' => '¿Está seguro de que desea eliminar este recurso?', - 'edit' => 'Editar Activo', + 'edit' => 'Editar activo', 'model_deleted' => 'Este modelo de activos ha sido eliminado. Debe restaurar el modelo antes de poder restaurar el activo.', 'model_invalid' => 'Este modelo para este activo es inválido.', 'model_invalid_fix' => 'The asset must be updated use a valid asset model before attempting to check it in or out, or to audit it.', @@ -25,7 +25,7 @@ return [ 'pending' => 'Pendiente', 'undeployable' => 'No utilizable', 'undeployable_tooltip' => 'Este activo tiene una etiqueta de estado que es no utilizable y no puede ser asignado en este momento.', - 'view' => 'Ver Activo', + 'view' => 'Ver activo', 'csv_error' => 'Tiene un error en su archivo CSV:', 'import_text' => '

Cargue un archivo CSV que contenga el historial de activos. Los activos y los usuarios DEBEN existir ya en el sistema, o serán omitidos. La importación del historial busca activos que coincidan con la etiqueta de activo. Intentaremos encontrar un usuario usando el nombre del usuario que proporcione y los criterios que seleccione a continuación. Si no selecciona ningún criterio, el sistema simplemente intentará usar el formato de nombre de usuario configurado en Admin > Opciones Generales.

Los campos incluidos en el CSV deben coincidir con los encabezados: Asset Tag, Name, Checkout Date, Checkin Date. Cualquier campo adicional será ignorado.

Checkin Date(Fecha de Devolución): dejar en blanco o usar fechas futuras asignará los ítems al usuario asociado. Excluir la columna Checkin Date creará una fecha de devolución con la fecha de hoy.

', 'csv_import_match_f-l' => 'Intenta emparejar usuarios con formato nombre.lastname (jane.smith)', diff --git a/resources/lang/es-VE/admin/hardware/message.php b/resources/lang/es-VE/admin/hardware/message.php index 7c1ed1b9a..8ef5e610b 100644 --- a/resources/lang/es-VE/admin/hardware/message.php +++ b/resources/lang/es-VE/admin/hardware/message.php @@ -12,7 +12,7 @@ return [ 'warning_audit_date_mismatch' => 'La próxima fecha de auditoría de este activo (:next_audit_date) es anterior a la última fecha de auditoría (:last_audit_date). Por favor, actualice la próxima fecha de auditoría.', 'create' => [ - 'error' => 'El activo no ha sido creado, por favor, inténtelo de nuevo. :(', + 'error' => 'El activo no fue creado, por favor, inténtelo de nuevo. :(', 'success' => 'Activo creado con éxito. :)', 'success_linked' => 'Activo con etiqueta :tag creado con éxito. Haga clic aquí para ver.', ], @@ -71,7 +71,7 @@ return [ ], 'checkout' => [ - 'error' => 'El activo no se ha asignado, por favor, inténtelo de nuevo', + 'error' => 'El activo no fue asignado, por favor inténtelo de nuevo', 'success' => 'Activo asignado con éxito.', 'user_does_not_exist' => 'El usuario es inválido. Por favor, inténtelo de nuevo.', 'not_available' => '¡Ese activo no está disponible para retirar!', @@ -79,10 +79,10 @@ return [ ], 'checkin' => [ - 'error' => 'El activo no se ha registrado, por favor, inténtelo de nuevo', - 'success' => 'Activo registrado con éxito.', - 'user_does_not_exist' => 'El usuario es inválido. Por favor inténtelo de nuevo.', - 'already_checked_in' => 'Ese activo ya ha sido registrado.', + 'error' => 'El equipo no se pudo devolver, por favor inténtelo de nuevo', + 'success' => 'El activo fue devuelto exitosamente.', + 'user_does_not_exist' => 'Es usuario no es correcto, por favor inténtelo de nuevo.', + 'already_checked_in' => 'El equipo ya ha sido devuelto.', ], diff --git a/resources/lang/es-VE/admin/hardware/table.php b/resources/lang/es-VE/admin/hardware/table.php index 58c12d0f9..8be5e1679 100644 --- a/resources/lang/es-VE/admin/hardware/table.php +++ b/resources/lang/es-VE/admin/hardware/table.php @@ -15,7 +15,7 @@ return [ 'dl_csv' => 'Descargar CSV', 'eol' => 'Fin de Vida', 'id' => 'Identificación', - 'last_checkin_date' => 'Last Checkin Date', + 'last_checkin_date' => 'Última fecha de devolución', 'location' => 'Localización', 'purchase_cost' => 'Costo', 'purchase_date' => 'Comprado', diff --git a/resources/lang/es-VE/admin/licenses/form.php b/resources/lang/es-VE/admin/licenses/form.php index 48e4c0300..5653d2712 100644 --- a/resources/lang/es-VE/admin/licenses/form.php +++ b/resources/lang/es-VE/admin/licenses/form.php @@ -3,8 +3,8 @@ return array( 'asset' => 'Activo', - 'checkin' => 'Registro', - 'create' => 'Crear Licencia', + 'checkin' => 'Devolver', + 'create' => 'Crear licencia', 'expiration' => 'Fecha de vencimiento', 'license_key' => 'Clave del Producto', 'maintained' => 'Mantenido', @@ -18,5 +18,5 @@ return array( 'to_email' => 'Licenciado al Correo Electrónico', 'to_name' => 'Licenciado a Nombre', 'update' => 'Actualizar Licencia', - 'checkout_help' => 'Debes asignar una licencia a un activo de hardware o a una persona. Puedes seleccionar ambos pero el dueño del activo debe coincidir con la persona a la que le registras el activo.' + 'checkout_help' => 'Debe asignar una licencia a un activo de hardware o a una persona. Puede seleccionar ambos, pero el propietario del activo debe coincidir con la persona a la que está asignado el activo.' ); diff --git a/resources/lang/es-VE/admin/licenses/message.php b/resources/lang/es-VE/admin/licenses/message.php index c45ef616c..c7d17076a 100644 --- a/resources/lang/es-VE/admin/licenses/message.php +++ b/resources/lang/es-VE/admin/licenses/message.php @@ -47,7 +47,7 @@ return array( ), 'checkin' => array( - 'error' => 'Hubo un problema registrando la licencia. Por favor, inténtalo de nuevo.', + 'error' => 'Hubo un problema devolviendo la licencia. Por favor, inténtalo de nuevo.', 'success' => 'La licencia fue registrada con éxito' ), diff --git a/resources/lang/es-VE/admin/licenses/table.php b/resources/lang/es-VE/admin/licenses/table.php index d349b7d48..dd1a1159a 100644 --- a/resources/lang/es-VE/admin/licenses/table.php +++ b/resources/lang/es-VE/admin/licenses/table.php @@ -6,9 +6,9 @@ return array( 'checkout' => 'Registrado / Asignado', 'deleted_at' => 'Eliminado el', 'id' => 'ID', - 'license_email' => 'Correo Electrónico de la Licencia', + 'license_email' => 'Email de licencia', 'license_name' => 'Licenciado A', - 'purchase_date' => 'Fecha de Compra', + 'purchase_date' => 'Fecha de compra', 'purchased' => 'Comprado', 'seats' => 'Puestos', 'hardware' => 'Hardware', diff --git a/resources/lang/es-VE/admin/locations/message.php b/resources/lang/es-VE/admin/locations/message.php index 47d103ace..1398e3871 100644 --- a/resources/lang/es-VE/admin/locations/message.php +++ b/resources/lang/es-VE/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'La ubicación no existe.', - 'assoc_users' => 'Esta ubicación está actualmente asociada con al menos un usuario y no puede ser borrada. Por favor actualiza tus usuarios para no referenciar más esta ubicación e inténtalo de nuevo. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Esta ubicación está actualmente asociada con al menos un activo y no puede ser borrada. Por favor actualiza tus activos para no referenciar más esta ubicación e inténtalo de nuevo. ', 'assoc_child_loc' => 'Esta ubicación es actualmente padre al menos una ubicación hija y no puede ser borrada. Por favor actualiza tus ubicaciones para no referenciar más esta ubicación e inténtalo de nuevo. ', 'assigned_assets' => 'Recursos asignados', diff --git a/resources/lang/es-VE/admin/locations/table.php b/resources/lang/es-VE/admin/locations/table.php index 79ed104e5..98b7124d3 100644 --- a/resources/lang/es-VE/admin/locations/table.php +++ b/resources/lang/es-VE/admin/locations/table.php @@ -16,9 +16,9 @@ return [ 'name' => 'Nombre de Ubicación', 'address' => 'Dirección', 'address2' => 'Dirección línea 2', - 'zip' => 'Código Postal', + 'zip' => 'Código postal', 'locations' => 'Ubicaciones', - 'parent' => 'Padre', + 'parent' => 'Ubicación padre', 'currency' => 'Divisa de la Ubicación', 'ldap_ou' => 'Búsqueda LDAP OU', 'user_name' => 'Usuario', @@ -32,7 +32,7 @@ return [ 'asset_serial' => 'Número de serie', 'asset_location' => 'Localización', 'asset_checked_out' => 'Asignado', - 'asset_expected_checkin' => 'Checkin Esperado', + 'asset_expected_checkin' => 'Fecha esperada de devolución', 'date' => 'Fecha:', 'phone' => 'Teléfono ubicación', 'signed_by_asset_auditor' => 'Firmado por (Juego de Acciones):', diff --git a/resources/lang/es-VE/admin/manufacturers/table.php b/resources/lang/es-VE/admin/manufacturers/table.php index 0f5dcd7ee..36cfcdca9 100644 --- a/resources/lang/es-VE/admin/manufacturers/table.php +++ b/resources/lang/es-VE/admin/manufacturers/table.php @@ -10,7 +10,7 @@ return array( 'support_email' => 'Correo de soporte', 'support_phone' => 'Teléfono de Soporte', 'support_url' => 'URL de Soporte', - 'warranty_lookup_url' => 'URL de Búsqueda de Garantía', + 'warranty_lookup_url' => 'URL de búsqueda de garantía', 'update' => 'Actualizar Fabricante', ); diff --git a/resources/lang/es-VE/admin/models/general.php b/resources/lang/es-VE/admin/models/general.php index 003967de3..7b575e0c7 100644 --- a/resources/lang/es-VE/admin/models/general.php +++ b/resources/lang/es-VE/admin/models/general.php @@ -12,7 +12,7 @@ return array( 'show_mac_address' => 'Mostrar campo de dirección MAC en activos en este modelo', 'view_deleted' => 'Ver Borrados', 'view_models' => 'Ver modelos', - 'fieldset' => 'Fieldset', + 'fieldset' => 'Grupos de campo', 'no_custom_field' => 'Sin campos personalizados', 'add_default_values' => 'Añadir valores por defecto', ); diff --git a/resources/lang/es-VE/admin/models/message.php b/resources/lang/es-VE/admin/models/message.php index 90c7b7ebb..184c9b11c 100644 --- a/resources/lang/es-VE/admin/models/message.php +++ b/resources/lang/es-VE/admin/models/message.php @@ -12,7 +12,7 @@ return array( 'create' => array( 'error' => 'El modelo no fue creado, por favor inténtalo de nuevo.', 'success' => 'Modelo creado con éxito.', - 'duplicate_set' => 'Un modelo de activo con ese nombre, fabricante y número de modelo ya existe.', + 'duplicate_set' => 'Ya existe un modelo de equipo con el mismo nombre, fabricante y número de modelo.', ), 'update' => array( diff --git a/resources/lang/es-VE/admin/models/table.php b/resources/lang/es-VE/admin/models/table.php index 6e8e0ee46..ee734f15c 100644 --- a/resources/lang/es-VE/admin/models/table.php +++ b/resources/lang/es-VE/admin/models/table.php @@ -6,7 +6,7 @@ return array( 'created_at' => 'Creado el', 'eol' => 'Fin de Vida', 'modelnumber' => 'Modelo No.', - 'name' => 'Nombre de Activo de Modelo', + 'name' => 'Nombre del modelo de activo', 'numassets' => 'Activos', 'title' => 'Modelos de Activo', 'update' => 'Actualizar Modelo de Activo', diff --git a/resources/lang/es-VE/admin/settings/general.php b/resources/lang/es-VE/admin/settings/general.php index de3193ca0..f3b7348ac 100644 --- a/resources/lang/es-VE/admin/settings/general.php +++ b/resources/lang/es-VE/admin/settings/general.php @@ -46,11 +46,11 @@ return [ 'dashboard_message' => 'Mensajes del Panel', 'dashboard_message_help' => 'Este texto aparecerá en el panel para cualquiera que tenga permiso de ver el panel.', 'default_currency' => 'Divisa predeterminada', - 'default_eula_text' => 'Términos y condiciones por defecto', + 'default_eula_text' => 'Acuerdo de uso predeterminado', 'default_language' => 'Lenguaje Predeterminado', - 'default_eula_help_text' => 'También puede asociar términos y condiciones personalizados a categorías específicas.', + 'default_eula_help_text' => 'También puede asociar acuerdos de uso personalizados a categorías específicas.', 'acceptance_note' => 'Añada una nota para su decisión (opcional)', - 'display_asset_name' => 'Mostrar Nombre del Equipo', + 'display_asset_name' => 'Mostrar nombre del activo', 'display_checkout_date' => 'Mostrar fecha de asignación', 'display_eol' => 'Mostrar Fin de Vida en la vista de tabla', 'display_qr' => 'Mostrar Códigos QR', @@ -60,8 +60,8 @@ return [ 'alt_barcode_type' => 'Tipo de código de barras 1D', 'email_logo_size' => 'Los logotipos cuadrados en el correo electrónico se ven mejor. ', 'enabled' => 'Activado', - 'eula_settings' => 'Configuración de los términos y condiciones', - 'eula_markdown' => 'Estos términos y condiciones permiten markdown estilo Github.', + 'eula_settings' => 'Configuración de los acuerdos de uso', + 'eula_markdown' => 'Estos acuerdos de uso permiten markdown estilo Github.', 'favicon' => 'Favicon', 'favicon_format' => 'Los tipos de archivo aceptados son ico, png y gif. Otros formatos de imagen pueden no funcionar en todos los navegadores.', 'favicon_size' => 'Favicons deben ser imágenes cuadradas, 16x16 píxeles.', @@ -69,7 +69,7 @@ return [ 'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Los enlaces están permitidos usando el markdown estilo Github. Saltos de línea, cabeceras, imágenes, etc., pueden dar resultados impredecibles.', 'general_settings' => 'Configuración General', 'general_settings_keywords' => 'soporte de la empresa, firma, aceptación, formato de correo electrónico, formato de nombre de usuario, imágenes, por página, miniatura, eula, acuerdo de licencia de usuario final, términos y condiciones, gravatar, términos de servicio, tablero de indicadores, privacidad', - 'general_settings_help' => 'Términos y condiciones por defecto y más', + 'general_settings_help' => 'Acuerdo de uso predeterminado y más', 'generate_backup' => 'Generar Respaldo', 'google_workspaces' => 'Espacios de trabajo de Google', 'header_color' => 'Color de Encabezado', @@ -97,7 +97,7 @@ return [ 'ldap_server_help' => 'Esto debería empezar con ldap:// (para no-encriptados o TLS) o ldaps:// (para SSL)', 'ldap_server_cert' => 'Validación de certificado LDAP SSL', 'ldap_server_cert_ignore' => 'Permitir Certificado SSL inválido', - 'ldap_server_cert_help' => 'Selecciona este campo si estás usando un certificado SSL autofirmado y te gustaría aceptar un certificado SSL inválido.', + 'ldap_server_cert_help' => 'Seleccione esta casilla si está utilizando un certificado SSL autofirmado y desea aceptar un certificado SSL inválido.', 'ldap_tls' => 'Usar TLS', 'ldap_tls_help' => 'Esto debe seleccionarse solamente si estás ejecutando STARTTLS en tu servidor LDAP. ', 'ldap_uname' => 'Enlazar Nombre de Usuario LDAP', @@ -157,7 +157,7 @@ return [ 'php_gd_info' => 'Debes instalar php-gd para mostrar códigos QR, ve las instrucciones de instalación.', 'php_gd_warning' => 'PHP Image Processing y GD plugin NO ESTÁN instalados.', 'pwd_secure_complexity' => 'Complejidad de la contraseña', - 'pwd_secure_complexity_help' => 'Selecciona las reglas de complejidad que quieras aplicar.', + 'pwd_secure_complexity_help' => 'Seleccione las reglas de complejidad de las contraseñas que desee aplicar.', 'pwd_secure_complexity_disallow_same_pwd_as_user_fields' => 'La contraseña no puede ser la misma que el nombre, apellido, correo electrónico o nombre de usuario', 'pwd_secure_complexity_letters' => 'Requiere al menos una letra', 'pwd_secure_complexity_numbers' => 'Requiere al menos un número', @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Longitud de las etiquetas de activos, incluyendo relleno de ceros', 'username_format_help' => 'Esta configuración sólo será utilizada por el proceso de importación si no se proporciona un nombre de usuario y tenemos que generar un nombre de usuario para usted.', 'oauth_title' => 'Configuración de la API de OAuth', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Configuración de Oauth Endpoint', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Actualizar ajustes de etiqueta de activos', 'barcode_title' => 'Actualizar ajustes de código de barras', 'barcodes' => 'Códigos de barras', @@ -362,7 +372,7 @@ return [ 'mail_reply_to' => 'Dirección de respuesta de correo', 'mail_from' => 'Correo desde la dirección', 'database_driver' => 'Controlador de base de datos', - 'bs_table_storage' => 'Almacenamiento de Tabla', + 'bs_table_storage' => 'Almacenamiento de tabla', 'timezone' => 'Timezone', ]; diff --git a/resources/lang/es-VE/admin/statuslabels/message.php b/resources/lang/es-VE/admin/statuslabels/message.php index ffa952ac6..6bdbe0881 100644 --- a/resources/lang/es-VE/admin/statuslabels/message.php +++ b/resources/lang/es-VE/admin/statuslabels/message.php @@ -24,9 +24,9 @@ return [ 'help' => [ 'undeployable' => 'Estos activos no pueden asignarse a nadie.', - 'deployable' => 'Estos activos pueden ser retirados. Una vez hayan sido asignados, asumirán el metaestado de Asignado.', - 'archived' => 'Estos activos no pueden ser asignados, y sólo se mostrarán en la vista archivada. Esto es útil para retener información acerca de activos para propósitos históricos o de presupuesto, pero manteniéndolos fuera de la lista de activos del día a día.', - 'pending' => 'Estos activos no pueden ser asignados a nadie aún, usados a menudo para artículos que son para reparar pero se espera que vuelvan a circulación.', + 'deployable' => 'Estos activos pueden ser asignados. Una vez estén asignados, asumirán el meta estado de Asignado.', + 'archived' => 'Estos equipos no pueden ser asignados, y solo se mostrarán en la vista de Archivados. Esto es útil para retener información sobre activos por razones de presupuesto/revisión histórica, mientras están fuera de la lista de equipos del día a día.', + 'pending' => 'Estos equipos no pueden ser asignados, suele usarse para ítems que están en reparación, o que se espera que regresen a circulación eventualmente.', ], ]; diff --git a/resources/lang/es-VE/admin/statuslabels/table.php b/resources/lang/es-VE/admin/statuslabels/table.php index 7ab3097c1..f7e064b39 100644 --- a/resources/lang/es-VE/admin/statuslabels/table.php +++ b/resources/lang/es-VE/admin/statuslabels/table.php @@ -1,17 +1,17 @@ 'Acerca de los estados de etiqueta', + 'about' => 'Acerca de las etiquetas de estado', 'archived' => 'Archivado', 'create' => 'Crear estado de etiqueta', - 'color' => 'Color del Gráfico', - 'default_label' => 'Etiqueta por defecto', + 'color' => 'Color en el gráfico', + 'default_label' => 'Etiqueta predeterminada', 'default_label_help' => 'Esto se utiliza para asegurar que sus etiquetas de estado más comúnmente usadas aparezcan en la parte superior del cuadro de selección cuando se creen/edita activos.', 'deployable' => 'Utilizable', 'info' => 'Las etiquetas de estado se usan para describir los diferentes estados en que pueden estar sus equipos. Por ejemplo: en reparación, perdidos/robados, etc. Puede crear nuevas etiquetas de estado para equipos utilizables, pendientes o archivados.', 'name' => 'Nombre de estado', 'pending' => 'Pendiente', - 'status_type' => 'Tipo de Estado', + 'status_type' => 'Tipo de estado', 'show_in_nav' => 'Mostrar en la barra lateral', 'title' => 'Etiquetas de estado', 'undeployable' => 'No utilizable', diff --git a/resources/lang/es-VE/admin/suppliers/table.php b/resources/lang/es-VE/admin/suppliers/table.php index 578ef6418..541da852b 100644 --- a/resources/lang/es-VE/admin/suppliers/table.php +++ b/resources/lang/es-VE/admin/suppliers/table.php @@ -20,7 +20,7 @@ return array( 'suppliers' => 'Proveedores', 'update' => 'Actualizar Proveedor', 'view' => 'Ver Proveedor', - 'view_assets_for' => 'Ver Activos para', - 'zip' => 'Código Postal', + 'view_assets_for' => 'Ver activos para', + 'zip' => 'Código postal', ); diff --git a/resources/lang/es-VE/admin/users/general.php b/resources/lang/es-VE/admin/users/general.php index ee3fd1135..e782e8b52 100644 --- a/resources/lang/es-VE/admin/users/general.php +++ b/resources/lang/es-VE/admin/users/general.php @@ -16,13 +16,13 @@ return [ 'restore_user' => 'Haga clic aquí para restaurarlos.', 'last_login' => 'Último Inicio de Sesión', 'ldap_config_text' => 'Los parámetros de configuración LDAP pueden ser encontrados en Admin > Settings. La ubicación (opcional) seleccionada será establecida para todos los usuarios importados.', - 'print_assigned' => 'Imprimir Todos los Asignados', - 'email_assigned' => 'Lista de Correos Asignados', + 'print_assigned' => 'Imprimir todos los asignados', + 'email_assigned' => 'Enviar correo con todos los asignados', 'user_notified' => 'El usuario ha sido enviado por correo electrónico a una lista de sus elementos asignados actualmente.', 'auto_assign_label' => 'Incluye a este usuario al asignar automáticamente licencias elegibles', 'auto_assign_help' => 'Omitir este usuario en la asignación automática de licencias', 'software_user' => 'Software Asignado a :name', - 'send_email_help' => 'Debe proporcionar una dirección de correo electrónico para que este usuario le envíe credenciales. Las credenciales de correo electrónico sólo se pueden hacer en la creación del usuario. Las contraseñas se almacenan en un hash de un solo sentido y no se pueden recuperar una vez guardadas.', + 'send_email_help' => 'Debe proporcionar una dirección de correo electrónico para este usuario para poder enviarle las credenciales. Únicamente pueden enviarse las credenciales por correo eléctronico durante la creación del usuario. Las contraseñas se almacenan en un hash de un solo sentido y no se pueden recuperar una vez guardadas.', 'view_user' => 'Ver Usuario :name', 'usercsv' => 'Archivo CSV', 'two_factor_admin_optin_help' => 'La configuración actual permite la aplicación selectiva de la autenticación de dos factores. ', @@ -43,7 +43,7 @@ return [ 'remote_help' => 'Esto puede ser útil si necesita filtrar por usuarios remotos que nunca o raramente entran en sus ubicaciones físicas.', 'not_remote_label' => 'Este no es un usuario remoto', 'vip_label' => 'Usuario VIP', - 'vip_help' => 'Esto puede ser útil para marcar a personas importantes en su org si desea manejarlas de maneras especiales.', + 'vip_help' => 'Esto puede ser útil como indicador de personas importantes en su organización si desea tratarlas de forma especial.', 'create_user' => 'Crear un usuario', 'create_user_page_explanation' => 'Esta es la información de la cuenta que usará para acceder al sitio por primera vez.', 'email_credentials' => 'Credenciales de email', diff --git a/resources/lang/es-VE/admin/users/message.php b/resources/lang/es-VE/admin/users/message.php index 3eaa518ae..6ffcce63f 100644 --- a/resources/lang/es-VE/admin/users/message.php +++ b/resources/lang/es-VE/admin/users/message.php @@ -11,7 +11,7 @@ return array( 'user_has_no_assets_assigned' => 'No hay activos asignados al usuario.', 'user_password_required' => 'La contraseña es obligatoria.', 'insufficient_permissions' => 'Permisos insuficientes.', - 'user_deleted_warning' => 'Este usuario ha sido eliminado. Deberás restaurar este usuario para editarlo o asignarle nuevos activos.', + 'user_deleted_warning' => 'Este usuario ha sido eliminado. Tendrá que restaurar este usuario para editarlo o para asignarle nuevos activos.', 'ldap_not_configured' => 'La integración LDAP no ha sido configurada para esta instalación.', 'password_resets_sent' => 'Los usuarios seleccionados que están activados y tienen una dirección de correo electrónico válida han sido enviados un enlace de restablecimiento de contraseña.', 'password_reset_sent' => 'Un enlace para restablecer la contraseña ha sido enviado a :email!', diff --git a/resources/lang/es-VE/admin/users/table.php b/resources/lang/es-VE/admin/users/table.php index a226217d8..a055c9296 100644 --- a/resources/lang/es-VE/admin/users/table.php +++ b/resources/lang/es-VE/admin/users/table.php @@ -18,7 +18,7 @@ return array( 'last_name' => 'Apellido', 'location' => 'Ubicación', 'lock_passwords' => 'Los detalles de acceso no pueden ser cambiados en esta instalación.', - 'manager' => 'Responsable', + 'manager' => 'Supervisor', 'managed_locations' => 'Ubicaciones adminsitradas', 'managed_users' => 'Usuarios gestionados', 'name' => 'Nombre', diff --git a/resources/lang/es-VE/auth/general.php b/resources/lang/es-VE/auth/general.php index 59f7749cb..89d210aa3 100644 --- a/resources/lang/es-VE/auth/general.php +++ b/resources/lang/es-VE/auth/general.php @@ -1,8 +1,8 @@ 'Enviar Enlace de Reestablecimiento de Contraseña', - 'email_reset_password' => 'Enviar correo para restablecer contraseña', + 'send_password_link' => 'Enviar enlace de restablecimiento de contraseña', + 'email_reset_password' => 'Enviar correo', 'reset_password' => 'Restablecer Contraseña', 'saml_login' => 'Iniciar sesión a través de SAML', 'login' => 'Iniciar Sesión', diff --git a/resources/lang/es-VE/button.php b/resources/lang/es-VE/button.php index 1875f81c1..fe11c06a5 100644 --- a/resources/lang/es-VE/button.php +++ b/resources/lang/es-VE/button.php @@ -4,7 +4,7 @@ return [ 'actions' => 'Acciones', 'add' => 'Añadir Nuevo', 'cancel' => 'Cancelar', - 'checkin_and_delete' => 'Checkin All / Eliminar Usuario', + 'checkin_and_delete' => 'Devolver todo / Eliminar usuario', 'delete' => 'Borrar', 'edit' => 'Editar', 'restore' => 'Restaurar', @@ -12,8 +12,8 @@ return [ 'request' => 'Solicitar', 'submit' => 'Enviar', 'upload' => 'Cargar', - 'select_file' => 'Seleccionar Archivo...', - 'select_files' => 'Selecciona Archivos...', + 'select_file' => 'Seleccione un archivo...', + 'select_files' => 'Seleccionar archivos...', 'generate_labels' => '{1} Generar Etiqueta|[2,*] Generar Etiquetas', 'send_password_link' => 'Enviar enlace de restablecimiento de contraseña', 'go' => 'Ir', diff --git a/resources/lang/es-VE/general.php b/resources/lang/es-VE/general.php index 2cf96cfc7..af96a0bfc 100644 --- a/resources/lang/es-VE/general.php +++ b/resources/lang/es-VE/general.php @@ -6,9 +6,9 @@ return [ 'activated' => 'Activado', 'accepted_date' => 'Fecha aceptada', 'accessory' => 'Accesorio', - 'accessory_report' => 'Reporte de Accesorio', + 'accessory_report' => 'Informe de accesorios', 'action' => 'Acción', - 'activity_report' => 'Reporte de Actividad', + 'activity_report' => 'Informe de actividad', 'address' => 'Dirección', 'admin' => 'Admin', 'admin_tooltip' => 'Este usuario tiene privilegios de superadministrador', @@ -45,12 +45,12 @@ return [ 'bad_data' => 'No se ha encontrado nada. ¿Quizás datos incorrectos?', 'bulkaudit' => 'Auditoría Masiva', 'bulkaudit_status' => 'Auditar Estado', - 'bulk_checkout' => 'Asignación Masiva', + 'bulk_checkout' => 'Asignación masiva', 'bulk_edit' => 'Edición masiva', 'bulk_delete' => 'Eliminar en masa', 'bulk_actions' => 'Acciones en masa', 'bulk_checkin_delete' => 'Checkin en masa / Eliminar usuarios', - 'byod' => 'SU', + 'byod' => 'BYOD', 'byod_help' => 'Este dispositivo es propiedad del usuario', 'bystatus' => 'por Estado', 'cancel' => 'Cancelar', @@ -59,15 +59,15 @@ return [ 'change' => 'Entrada/Salida', 'changeemail' => 'Cambiar Dirección de Correo Electrónico', 'changepassword' => 'Cambiar Contraseña', - 'checkin' => 'Registrar', + 'checkin' => 'Devolver', 'checkin_from' => 'Registrar desde', 'checkout' => 'Asignar', - 'checkouts_count' => 'Pagos', - 'checkins_count' => 'Checkins', + 'checkouts_count' => 'Asignaciones', + 'checkins_count' => 'Devoluciones', 'user_requests_count' => 'Solicitudes', 'city' => 'Ciudad', 'click_here' => 'Click aquí', - 'clear_selection' => 'Limpiar selección', + 'clear_selection' => 'Borrar selección', 'companies' => 'Compañías', 'company' => 'Compañía', 'component' => 'Componente', @@ -78,7 +78,7 @@ return [ 'country' => 'País', 'could_not_restore' => 'Error al restaurar :item_type: :error', 'not_deleted' => 'El :item_type no está borrado por lo que no puede ser restaurado', - 'create' => 'Crear Nuevo', + 'create' => 'Crear nuevo', 'created' => 'Elemento Creado', 'created_asset' => 'activo creado', 'created_at' => 'Creado el', @@ -111,10 +111,10 @@ return [ 'details' => 'Detalles', 'download' => 'Descarga', 'download_all' => 'Descargar todo', - 'editprofile' => 'Editar tu Perfil', + 'editprofile' => 'Editar perfil', 'eol' => 'Fin de Vida', 'email_domain' => 'Dominio de Correo Electrónico', - 'email_format' => 'Formato de Correo Electrónico', + 'email_format' => 'Formato de correo electrónico', 'employee_number' => 'Número de empleado', 'email_domain_help' => 'Este se utiliza para generar direcciones de correo al importar', 'error' => 'Error', @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Apellidos de la primera iniciativa (smith_j@ejemplo.com)', 'firstinitial.lastname' => 'Primer apellido inicial (j.smith@ejemplo.com)', 'firstnamelastinitial' => 'Apellidos de nombre (janes@ejemplo.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Nombre', 'first_name_format' => 'Primer Nombre (jane@ejemplo.com)', 'files' => 'Archivos', @@ -153,8 +154,8 @@ return [ 'id' => 'ID', 'image' => 'Imagen', 'image_delete' => 'Borrar Imagen', - 'include_deleted' => 'Incluye Activos Eliminados', - 'image_upload' => 'Subir Imagen', + 'include_deleted' => 'Incluir activos eliminados', + 'image_upload' => 'Cargar imagen', 'filetypes_accepted_help' => 'El tipo de archivo aceptado es :types. El tamaño máximo permitido para subir es :size.|Los tipos de archivo aceptados son :types. El tamaño máximo permitido es :size.', 'filetypes_size_help' => 'El tamaño máximo permitido para subir es :size.', 'image_filetypes_help' => 'Los tipos de archivo aceptados son jpg, webp, png, gif y svg. El tamaño máximo permitido para subir es :size.', @@ -163,10 +164,10 @@ return [ 'import_this_file' => 'Mapear campos y procesar este archivo', 'importing' => 'Importando', 'importing_help' => 'Puede importar activos, accesorios, licencias, componentes, consumibles y usuarios a través del archivo CSV.

El CSV debe estar delimitado por comas y formateado con encabezados que coincidan con los del CSVs de muestra en la documentación.', - 'import-history' => 'Importar Historial', + 'import-history' => 'Importar historial', 'asset_maintenance' => 'Mantenimiento de Activos', 'asset_maintenance_report' => 'Informe mantenimiento de activos', - 'asset_maintenances' => 'Mantenimientos de Activo', + 'asset_maintenances' => 'Mantenimiento de activos', 'item' => 'Elemento', 'item_name' => 'Nombre del artículo', 'import_file' => 'importar archivo CSV', @@ -196,7 +197,7 @@ return [ 'manufacturer' => 'Fabricante', 'manufacturers' => 'Fabricantes', 'markdown' => 'Este campo permite formateo estilo Github.', - 'min_amt' => 'Cantidad Mínima', + 'min_amt' => 'Cantidad mínima', 'min_amt_help' => 'Número mínimo de elementos que deberían estar disponibles antes de que se active una alerta. Deja la cantidad mínima en blanco si no quieres recibir alertas para un inventario bajo.', 'model_no' => 'Modelo nú.', 'months' => 'meses', @@ -214,21 +215,21 @@ return [ 'no_results' => 'Sin Resultados.', 'no' => 'No', 'notes' => 'Notas', - 'order_number' => 'Número de Orden', + 'order_number' => 'Número de orden', 'only_deleted' => 'Sólo activos eliminados', 'page_menu' => 'Mostrando elementos de _MENU_', 'pagination_info' => 'Mostrando _START_ de _END_ de elementos _TOTAL_', - 'pending' => 'Pendiente', + 'pending' => 'Pendientes', 'people' => 'Usuarios', 'per_page' => 'Resultados Por Página', 'previous' => 'Anterior', 'processing' => 'Procesando', 'profile' => 'Tu Perfil', 'purchase_cost' => 'Costo de Compra', - 'purchase_date' => 'Fecha de Compra', + 'purchase_date' => 'Fecha de compra', 'qty' => 'Cantidad', 'quantity' => 'Cantidad', - 'quantity_minimum' => 'Tienes :count artículos por debajo o casi por debajo de los niveles mínimos de cantidad', + 'quantity_minimum' => 'Tiene :count artículos por debajo o casi por debajo de los niveles mínimos de cantidad', 'quickscan_checkin' => 'Escaneo rápido', 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Listo para asignar', @@ -251,25 +252,25 @@ return [ 'select' => 'Seleccionar', 'select_all' => 'Seleccionar todo', 'search' => 'Buscar', - 'select_category' => 'Seleccionar una categoría', - 'select_datasource' => 'Seleccione un datoscópico', - 'select_department' => 'Seleccionar un Departamento', - 'select_depreciation' => 'Seleccionar un Tipo de Depreciación', - 'select_location' => 'Seleccionar una Ubicación', - 'select_manufacturer' => 'Seleccionar un Fabricante', - 'select_model' => 'Seleccionar un Modelo', - 'select_supplier' => 'Selecciona un Proveedor', - 'select_user' => 'Selecciona un Usuario', - 'select_date' => 'Seleccione Fecha (AAAA-MM-DD)', - 'select_statuslabel' => 'Seleccione Estado', - 'select_company' => 'Seleccione Compañía', - 'select_asset' => 'Seleccione Activo', + 'select_category' => 'Seleccione una categoría', + 'select_datasource' => 'Seleccione un origen de datos', + 'select_department' => 'Seleccione un departamento', + 'select_depreciation' => 'Seleccionar un tipo de depreciación', + 'select_location' => 'Seleccione una ubicación', + 'select_manufacturer' => 'Seleccione un fabricante', + 'select_model' => 'Seleccione un modelo', + 'select_supplier' => 'Seleccione un proveedor', + 'select_user' => 'Seleccione un usuario', + 'select_date' => 'Seleccione fecha (AAAA-MM-DD)', + 'select_statuslabel' => 'Seleccione un estado', + 'select_company' => 'Seleccione una empresa', + 'select_asset' => 'Seleccionar activo', 'settings' => 'Configuraciones', 'show_deleted' => 'Mostrar eliminados', 'show_current' => 'Mostrar Actual', 'sign_in' => 'Entrar', 'signature' => 'Firma', - 'signed_off_by' => 'Cerrado por', + 'signed_off_by' => 'Firmado por', 'skin' => 'Piel', 'webhook_msg_note' => 'Una notificación se enviará a través de webhook', 'webhook_test_msg' => '¡Oh hai! ¡Parece que tu integración :app con Snipe-IT está funcionando!', @@ -308,12 +309,12 @@ return [ 'users' => 'Usuarios', 'viewall' => 'Ver todo', 'viewassets' => 'Ver elementos asignados', - 'viewassetsfor' => 'Ver contenidos de :name', + 'viewassetsfor' => 'Ver activos para :name', 'website' => 'Sitio Web', 'welcome' => 'Bienvenido, :name', 'years' => 'años', 'yes' => 'Si', - 'zip' => 'Códio Postal', + 'zip' => 'Código postal', 'noimage' => 'No se subió la imagen o no fue encontrada.', 'file_does_not_exist' => 'El archivo solicitado no existe en el servidor.', 'file_upload_success' => '¡Archivo cargado exitosamente!', @@ -321,10 +322,10 @@ return [ 'token_expired' => 'Su sesión ha caducado. Por favor, inténtelo de nuevo.', 'login_enabled' => 'Inicio de sesión activado', 'audit_due' => 'Vence la auditoría', - 'audit_due_days' => 'Activos vencidos para auditoría dentro de :days Día|Activos vencidos para auditoría dentro de :days Días', - 'checkin_due' => 'Devoluciones cerca a vencerse', - 'checkin_overdue' => 'Atrasado por devolverse', - 'checkin_due_days' => 'Activos vencidos por cheque dentro de :days día|Activos vencidos por cheque dentro de :days días', + 'audit_due_days' => 'Activos pendientes para auditoría dentro de :days día|Activos pendientes para auditoría dentro de :days días', + 'checkin_due' => 'Pendiente por devolver', + 'checkin_overdue' => 'Atrasado por devolver', + 'checkin_due_days' => 'Activos que deben ser devueltos dentro de :days día|Activos que deben ser devueltos dentro de :days días', 'audit_overdue' => 'Atrasado para la auditoría', 'accept' => 'Aceptar :asset', 'i_accept' => 'Acepto', @@ -358,9 +359,9 @@ return [ 'reminder_checked_out_items' => 'Este es un recordatorio de los elementos que se te han comprobado actualmente. Si usted siente que esta lista es incorrecta (falta algo o algo que usted cree que nunca ha recibido), por favor envíe un correo electrónico a :reply_to_name a :reply_to_address.', 'changed' => 'Cambiado', 'to' => 'A', - 'report_fields_info' => '

Selecciona los campos que deseas incluir en tu informe personalizado y haz clic en Generar. El archivo (custom-asset-report-YYYY-mm-dd.csv) se descargará automáticamente, y puede abrirlo en Excel.

-

Si sólo deseas exportar algunos activos específicos, utiliza las siguientes opciones para filtrar tus resultados.

', - 'range' => 'Range', + 'report_fields_info' => '

Elija los campos que desa incluir en su informe personalizado, y haga click en Generar. El archivo (custom-asset-report-YYYY-mm-dd,csv) se descargará automáticamente y puede abrirlo en Excel.

+

Si desea exportar solo ciertos activos, use las siguientes opciones para afinar los resultados.

', + 'range' => 'Rango', 'bom_remark' => 'Añadir un BOM (signo de orden de byte) a este CSV', 'improvements' => 'Mejoras', 'information' => 'Información', @@ -374,13 +375,13 @@ return [ 'license_serial' => 'Clave de Serial/Producto', 'invalid_category' => 'Categoría no válida o ausente', 'invalid_item_category_single' => 'Falta o no válida :type categoría. Por favor actualiza la categoría de este :type para incluir una categoría válida antes de salir.', - 'dashboard_info' => 'Este es tu panel de control. Hay muchos parecidos, pero este es el tuyo.', + 'dashboard_info' => 'Este es su panel de control. Hay muchos similares, pero este es suyo.', '60_percent_warning' => '60% completo (advertencia)', - 'dashboard_empty' => 'Parece que aún no has añadido nada, así que no tenemos nada impresionante que mostrar. ¡Comienza añadiendo algunos activos, accesorios, consumibles o licencias ahora!', - 'new_asset' => 'Nuevo recurso', - 'new_license' => 'Nueva Licencia', + 'dashboard_empty' => 'Parece que aún no ha añadido nada, así que no tenemos nada impresionante que mostrar. ¡Comience añadiendo algunos activos, accesorios, consumibles o licencias ahora!', + 'new_asset' => 'Nuevo activo', + 'new_license' => 'Nueva licencia', 'new_accessory' => 'Nuevo accesorio', - 'new_consumable' => 'Nuevo Consumible', + 'new_consumable' => 'Nuevo consumible', 'collapse' => 'Colapso', 'assigned' => 'Asignado', 'asset_count' => 'Cantidad de activos', @@ -396,15 +397,15 @@ return [ 'notification_info' => 'Info', 'asset_information' => 'Información del recurso', 'model_name' => 'Nombre del modelo', - 'asset_name' => 'Nombre de Activo', + 'asset_name' => 'Nombre del activo', 'consumable_information' => 'Información Consumible:', 'consumable_name' => 'Nombre del Consumible:', 'accessory_information' => 'Información del accesorio:', 'accessory_name' => 'Nombre del Accesorio:', 'clone_item' => 'Clonar objeto', - 'checkout_tooltip' => 'Revisa este elemento', + 'checkout_tooltip' => 'Asignar este elemento', 'checkin_tooltip' => 'Devuelva este elemento para que esté disponible para resignar, borrar, etc.', - 'checkout_user_tooltip' => 'Revisa este elemento a un usuario', + 'checkout_user_tooltip' => 'Asignar este elemento a un usuario', 'checkin_to_diff_location' => 'Puede optar por registrar este activo en una ubicación distinta a la ubicación predeterminada :default_location, si existe una configurada', 'maintenance_mode' => 'El servicio no está disponible temporalmente para actualizaciones del sistema. Por favor, vuelva más tarde.', 'maintenance_mode_title' => 'Sistema temporalmente no disponible', @@ -522,7 +523,7 @@ return [ 'action_source' => 'Fuente de acción', 'or' => 'o', 'url' => 'URL', - 'edit_fieldset' => 'Editar campos y opciones de campos', + 'edit_fieldset' => 'Editar campos y opciones de grupos de campos', 'permission_denied_superuser_demo' => 'Permiso denegado. No puede actualizar la información de usuario para superadministradores en la demo.', 'pwd_reset_not_sent' => 'El usuario no está activado, está sincronizado con LDAP o no tiene una dirección de correo electrónico', 'error_sending_email' => 'Error al enviar email', diff --git a/resources/lang/es-VE/help.php b/resources/lang/es-VE/help.php index f9596b8d9..7b65497a8 100644 --- a/resources/lang/es-VE/help.php +++ b/resources/lang/es-VE/help.php @@ -29,7 +29,7 @@ return [ 'consumables' => 'Los consumibles son cualquier cosa comprada que se usará con el tiempo. Por ejemplo, tinta de impresora o papel copiador.', - 'depreciations' => 'Puede configurar las depreciaciones de activos para depreciar activos basados en una depreciación lineal.', + 'depreciations' => 'Puede configurar la depreciación de activos usando un método de línea recta.', 'empty_file' => 'El importador detecta que este archivo está vacío.' ]; diff --git a/resources/lang/es-VE/mail.php b/resources/lang/es-VE/mail.php index 590dd1e1b..a1b4e92a7 100644 --- a/resources/lang/es-VE/mail.php +++ b/resources/lang/es-VE/mail.php @@ -32,7 +32,7 @@ return [ 'additional_notes' => 'Notas Adicionales:', 'admin_has_created' => 'Un administrador ha creado una cuenta para ti en el sitio web de :web.', 'asset' => 'Activo:', - 'asset_name' => 'Nombre de Activo:', + 'asset_name' => 'Nombre del activo:', 'asset_requested' => 'Activo solicitado', 'asset_tag' => 'Etiqueta de activo', 'assets_warrantee_alert' => 'Hay :count activo con una garantía que expira en los próximos :threshold days.|Hay :count activos con garantías que expiran en los siguientes :threshold days.', diff --git a/resources/lang/et-EE/account/general.php b/resources/lang/et-EE/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/et-EE/account/general.php +++ b/resources/lang/et-EE/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/et-EE/admin/locations/message.php b/resources/lang/et-EE/admin/locations/message.php index dbcfb88f6..57349a4eb 100644 --- a/resources/lang/et-EE/admin/locations/message.php +++ b/resources/lang/et-EE/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Asukohta ei eksisteeri.', - 'assoc_users' => 'Selle asukohaga on seotud vähemalt üks kasutaja ja seda ei saa kustutada. Palun uuenda oma kasutajaid nii, et need ei kasutaks seda asukohta ning seejärel proovi uuesti. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Selle asukohaga on seotud vähemalt üks vahend ja seda ei saa kustutada. Palun uuenda oma vahendeid, et need ei kasutaks seda asukohta ning seejärel proovi uuesti. ', 'assoc_child_loc' => 'Sel asukohal on hetkel all-asukohti ja seda ei saa kustutada. Palun uuenda oma asukohti nii, et need ei kasutaks seda asukohta ning seejärel proovi uuesti. ', 'assigned_assets' => 'Määratud Varad', diff --git a/resources/lang/et-EE/admin/settings/general.php b/resources/lang/et-EE/admin/settings/general.php index 7f6610a15..112390a3d 100644 --- a/resources/lang/et-EE/admin/settings/general.php +++ b/resources/lang/et-EE/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Varasiltide, sealhulgas zerofilli pikkus', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/et-EE/general.php b/resources/lang/et-EE/general.php index 920324380..0ad1d689a 100644 --- a/resources/lang/et-EE/general.php +++ b/resources/lang/et-EE/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Perenimi Eesnimi algustäht (smith_j@example.com)', 'firstinitial.lastname' => 'Eesnime algustäht Perekonnanimi (j.smith@example.com)', 'firstnamelastinitial' => 'Eesnimi Perekonnanime algustäht (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Eesnimi', 'first_name_format' => 'Eesnimi (jane@example.com)', 'files' => 'Failid', diff --git a/resources/lang/fa-IR/account/general.php b/resources/lang/fa-IR/account/general.php index 769da8381..257822930 100644 --- a/resources/lang/fa-IR/account/general.php +++ b/resources/lang/fa-IR/account/general.php @@ -2,14 +2,12 @@ return array( 'personal_api_keys' => 'کلیدهای API شخصی', - 'api_key_warning' => 'هنگام ایجاد یک نشانه API، مطمئن شوید که آن را فوراً مانند آنها کپی کنید -چون دیگر برای شما قابل مشاهده نخواهد بود.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'url پایه API شما در این آدرس قرار دارد:', 'api_base_url_endpoint' => '/<endpoint> ', 'api_token_expiration_time' => 'توکن‌های API در موارد زیر منقضی می‌شوند:', - 'api_reference' => 'لطفاً مرجع API را بررسی کنید - نقاط انتهایی API خاص و اسناد API اضافی را پیدا کنید.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/fa-IR/admin/locations/message.php b/resources/lang/fa-IR/admin/locations/message.php index f5bc8da2c..f24c8ade4 100644 --- a/resources/lang/fa-IR/admin/locations/message.php +++ b/resources/lang/fa-IR/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'مکان وجود ندارد.', - 'assoc_users' => 'این مکان در حال حاضر با حداقل یک کاربر در ارتباط است و نمی تواند حذف شود. لطفا کاربران خود را به روز رسانی به دیگر مرجع این مکان و دوباره امتحان کنید. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'این مکان در حال حاضر همراه با حداقل یک دارایی است و قادر به حذف نمی شود. لطفا بروز دارایی های خود را به دیگر این مکان مرجع و دوباره امتحان کنید. ', 'assoc_child_loc' => 'این مکان در حال حاضر پدر و مادر کودک حداقل یک مکان است و قادر به حذف نمی شود. لطفا به روز رسانی مکان خود را به دیگر این مکان مرجع و دوباره امتحان کنید. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/fa-IR/admin/settings/general.php b/resources/lang/fa-IR/admin/settings/general.php index 894a49ae6..407e29211 100644 --- a/resources/lang/fa-IR/admin/settings/general.php +++ b/resources/lang/fa-IR/admin/settings/general.php @@ -393,10 +393,20 @@ return [ ', 'oauth_title' => 'تنظیمات API OAuth ', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth ', 'oauth_help' => 'تنظیمات نقطه پایانی Oauth ', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'تنظیمات برچسب دارایی را به روز کنید ', 'barcode_title' => 'تنظیمات بارکد را به روز کنید diff --git a/resources/lang/fa-IR/general.php b/resources/lang/fa-IR/general.php index 58a48fc04..b02e067aa 100644 --- a/resources/lang/fa-IR/general.php +++ b/resources/lang/fa-IR/general.php @@ -145,6 +145,7 @@ return [ 'lastname_firstinitial' => 'فامیل نام میانه (smith_j@example.com)', 'firstinitial.lastname' => 'نام میانه فامیل (j.smith@example.com)', 'firstnamelastinitial' => 'نام فامیل میانه (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'نام', 'first_name_format' => 'نام (jane@example.com)', 'files' => 'فایل ها', diff --git a/resources/lang/fi-FI/account/general.php b/resources/lang/fi-FI/account/general.php index 24ced92d8..9236530ad 100644 --- a/resources/lang/fi-FI/account/general.php +++ b/resources/lang/fi-FI/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Henkilökohtaiset API-avaimet', - 'api_key_warning' => 'Kun luot API-tunnisteen; varmista, että kopioit sen heti, sillä ne - eivät näy sinulle uudestaan.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Sinun API base url sijaitsee osoitteessa:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API-tunnisteet vanhenevat:', - 'api_reference' => 'Tarkista API viite - löydät erityisiä API päätepisteitä ja muuta API dokumentaatiota.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/fi-FI/admin/locations/message.php b/resources/lang/fi-FI/admin/locations/message.php index 760bfedbc..0f1c4fa5e 100644 --- a/resources/lang/fi-FI/admin/locations/message.php +++ b/resources/lang/fi-FI/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Sijaintia ei löydy.', - 'assoc_users' => 'Sijainti on määritetty käyttöön yhdelle tai useammalle käyttäjälle joten sitä ei voida poistaa. Poista sijainti käytöstä kaikilta käyttäjiltä ja yritä uudelleen. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Sijaintiin on tällä hetkellä liitettynä vähintään yksi laite, eikä sitä voi poistaa. Poista viittaus sijantiin ja yritä uudelleen. ', 'assoc_child_loc' => 'Tämä sijainti on ylempi toiselle sijainnille eikä sitä voi poistaa. Päivitä sijainnit, jotta et enää viitata tähän sijaintiin ja yritä uudelleen. ', 'assigned_assets' => 'Luovutetut laitteet', diff --git a/resources/lang/fi-FI/admin/settings/general.php b/resources/lang/fi-FI/admin/settings/general.php index 9877c78e2..83a89e24d 100644 --- a/resources/lang/fi-FI/admin/settings/general.php +++ b/resources/lang/fi-FI/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Laitetunnisteen pituus, mukaan lukien nollat', 'username_format_help' => 'Käytetään tietoja tuodessa, jos käyttäjänimeä ei ole annettu ja nimitietojen perusteella on luotava käyttäjälle käyttäjätunnus.', 'oauth_title' => 'OAuth API Asetukset', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Päätepisteen Asetukset', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Päivitä Laitetunnisteen Asetukset', 'barcode_title' => 'Päivitä Viivakoodin Asetukset', 'barcodes' => 'Barcodes', diff --git a/resources/lang/fi-FI/general.php b/resources/lang/fi-FI/general.php index 2b8e1069e..9e16354f7 100644 --- a/resources/lang/fi-FI/general.php +++ b/resources/lang/fi-FI/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Sukunimi _ etunimen ensimmäinen kirjain (virtanen_p@example.com)', 'firstinitial.lastname' => 'Etunimen ensimmäinen kirjain . sukunimi (p.virtanen@example.com)', 'firstnamelastinitial' => 'Etunimi Sukunimen ensimmäinen kirjain (paiviv@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Etunimi', 'first_name_format' => 'Etunimi (jane@example.com)', 'files' => 'Tiedostot', diff --git a/resources/lang/fil-PH/account/general.php b/resources/lang/fil-PH/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/fil-PH/account/general.php +++ b/resources/lang/fil-PH/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/fil-PH/admin/locations/message.php b/resources/lang/fil-PH/admin/locations/message.php index e049d7d92..0613d4089 100644 --- a/resources/lang/fil-PH/admin/locations/message.php +++ b/resources/lang/fil-PH/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Ang lokasyon ay hindi umiiral.', - 'assoc_users' => 'Ang lokasyong ito ay kasalukuyang naiugnay sa hindi bumaba sa isang user at hindi maaaring mai-delete. Mangyaring i-update ang iyong mga user upang hindi na magreperens sa lokasyong ito at paki-subok muli. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Ang lokasyong ito ay kasalukuyang naiugnay sa hindi bumaba sa isang asset at hindi maaaring mai-delete. Mangyaring i-update ang iyong mga asset upang hindi na magreperens sa lokasyong ito at paki-subok muli. ', 'assoc_child_loc' => 'Ang lokasyong ito ay kasalukuyang pinagmumulan sa hindi bumaba sa lokasyon isang bata at hindi maaaring mai-delete. Mangyaring i-update ang iyong mga lokasyon upang hindi na magreperens sa lokasyong ito at paki-subok muli. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/fil-PH/admin/settings/general.php b/resources/lang/fil-PH/admin/settings/general.php index bd2b0a6a3..ac57ba2a9 100644 --- a/resources/lang/fil-PH/admin/settings/general.php +++ b/resources/lang/fil-PH/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Ang haba ng mga tags ng asset, kabilang ang zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/fil-PH/general.php b/resources/lang/fil-PH/general.php index 7c576f67d..2e99882de 100644 --- a/resources/lang/fil-PH/general.php +++ b/resources/lang/fil-PH/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Ang Unang Pangalan', 'first_name_format' => 'Ang Unang Pangalan (jane@example.com)', 'files' => 'Ang mga file', diff --git a/resources/lang/fr-FR/account/general.php b/resources/lang/fr-FR/account/general.php index b376ce32b..743839afd 100644 --- a/resources/lang/fr-FR/account/general.php +++ b/resources/lang/fr-FR/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Clés personnelles d\'API', - 'api_key_warning' => 'Lors de la génération d\'un jeton d\'API, assurez-vous d\'en prendre note immédiatement car il - vous sera impossible de le consulter à nouveau.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'L\'URL de base de l\'API est situé à:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'Les jetons d\'API sont configurés pour expirer après:', - 'api_reference' => 'Veuillez consulter la documentation de référence des API pour - trouver des points de terminaison spécifiques et des informations supplémentaires.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/fr-FR/admin/locations/message.php b/resources/lang/fr-FR/admin/locations/message.php index 249e8f228..a7d671c94 100644 --- a/resources/lang/fr-FR/admin/locations/message.php +++ b/resources/lang/fr-FR/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Le lieu n\'existe pas.', - 'assoc_users' => 'Ce lieu est actuellement associé avec au moins un utilisateur et ne peut pas être supprimé. Veuillez mettre à jour vos utilisateurs pour ne plus faire référence à ce lieu et essayez à nouveau. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Cet emplacement est actuellement associé à au moins un actif et ne peut pas être supprimé. Veuillez mettre à jour vos actifs pour ne plus faire référence à cet emplacement et réessayez. ', 'assoc_child_loc' => 'Cet emplacement est actuellement le parent d\'au moins un sous emplacement et ne peut pas être supprimé . S\'il vous plaît mettre à jour vos emplacement pour ne plus le référencer et réessayez. ', 'assigned_assets' => 'Actifs assignés', diff --git a/resources/lang/fr-FR/admin/settings/general.php b/resources/lang/fr-FR/admin/settings/general.php index cc5ee6ea8..2c6a1cdd7 100644 --- a/resources/lang/fr-FR/admin/settings/general.php +++ b/resources/lang/fr-FR/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Longueur des étiquettes de bien, incluant le remplissage de zéros', 'username_format_help' => 'Ce paramètre ne sera utilisé par le processus d\'importation que si un nom d\'utilisateur n\'est pas fourni et que nous devons générer un nom d\'utilisateur pour vous.', 'oauth_title' => 'Paramètres de l\'API OAuth', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Paramètres du point de terminaison Oauth', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Mettre à jour les paramètres de numéro d\'inventaire', 'barcode_title' => 'Gérer les paramètres des codes-barres', 'barcodes' => 'Codes-barres', diff --git a/resources/lang/fr-FR/general.php b/resources/lang/fr-FR/general.php index a77057924..98dd47f8b 100644 --- a/resources/lang/fr-FR/general.php +++ b/resources/lang/fr-FR/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Nom de famille et première lettre du prénom (smith_j@example.com)', 'firstinitial.lastname' => 'Première lettre du prénom et nom de famille (j.smith@example.com)', 'firstnamelastinitial' => 'Prénom (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Prénom', 'first_name_format' => 'Prénom (jane@example.com)', 'files' => 'Fichiers', diff --git a/resources/lang/ga-IE/account/general.php b/resources/lang/ga-IE/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/ga-IE/account/general.php +++ b/resources/lang/ga-IE/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/ga-IE/admin/locations/message.php b/resources/lang/ga-IE/admin/locations/message.php index 9e9daf82d..8aeaec86c 100644 --- a/resources/lang/ga-IE/admin/locations/message.php +++ b/resources/lang/ga-IE/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Níl an suíomh ann.', - 'assoc_users' => 'Tá an suíomh seo bainteach le húsáid amháin ar a laghad agus ní féidir é a scriosadh. Nuashonraigh d\'úsáideoirí an t-ionad seo a thuilleadh agus déan iarracht arís.', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Tá an suíomh seo bainteach le sócmhainn amháin ar a laghad agus ní féidir é a scriosadh. Déan do sócmhainní a thabhairt cothrom le dáta gan tagairt a dhéanamh don áit seo agus déan iarracht arís.', 'assoc_child_loc' => 'Faoi láthair tá an suíomh seo ina tuismitheoir ar a laghad ar shuíomh leanbh amháin ar a laghad agus ní féidir é a scriosadh. Nuashonraigh do láithreacha le do thoil gan tagairt a dhéanamh don suíomh seo agus déan iarracht arís.', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/ga-IE/admin/settings/general.php b/resources/lang/ga-IE/admin/settings/general.php index b336a6a1d..555a64e3c 100644 --- a/resources/lang/ga-IE/admin/settings/general.php +++ b/resources/lang/ga-IE/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Fad na clibeanna sócmhainne, lena n-áirítear zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/ga-IE/general.php b/resources/lang/ga-IE/general.php index 151a3390b..9793694dd 100644 --- a/resources/lang/ga-IE/general.php +++ b/resources/lang/ga-IE/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Ainm', 'first_name_format' => 'Céadainm (jane@example.com)', 'files' => 'Files', diff --git a/resources/lang/he-IL/account/general.php b/resources/lang/he-IL/account/general.php index fa7c3cca3..b4de2bb37 100644 --- a/resources/lang/he-IL/account/general.php +++ b/resources/lang/he-IL/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'מפתחות API אישיים', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/he-IL/admin/locations/message.php b/resources/lang/he-IL/admin/locations/message.php index e3b17ad90..8b5f4a8a1 100644 --- a/resources/lang/he-IL/admin/locations/message.php +++ b/resources/lang/he-IL/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'המיקום אינו קיים.', - 'assoc_users' => 'המיקום משויך לפחות למשתמש אחד ולכן לא ניתן למחוק אותו. אנא עדכן את המשתמשים כך שלא יהיה אף משתמש משויך למיקום זה ונסה שנית. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'המיקום משויך לפחות לפריט אחד ולכן לא ניתן למחוק אותו. אנא עדכן את הפריטים כך שלא יהיה אף פריט משויך למיקום זה ונסה שנית. ', 'assoc_child_loc' => 'למיקום זה מוגדרים תתי-מיקומים ולכן לא ניתן למחוק אותו. אנא עדכן את המיקומים כך שלא שמיקום זה לא יכיל תתי מיקומים ונסה שנית. ', 'assigned_assets' => 'פריטים מוקצים', diff --git a/resources/lang/he-IL/admin/settings/general.php b/resources/lang/he-IL/admin/settings/general.php index 549043580..a76717c66 100644 --- a/resources/lang/he-IL/admin/settings/general.php +++ b/resources/lang/he-IL/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'אורך תגי הנכסים, כולל zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'ברקודים', diff --git a/resources/lang/he-IL/general.php b/resources/lang/he-IL/general.php index 69b55a6c8..a3ed41848 100644 --- a/resources/lang/he-IL/general.php +++ b/resources/lang/he-IL/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'שם משפחה ראשי תיבות שם פרטי (smith_j@example.com)', 'firstinitial.lastname' => 'ראשי תיבות שם פרטי שם משפחה (j.smith@example)', 'firstnamelastinitial' => 'שם פרטי ראשי תיבות שם משפחה (janes@example.com)', + 'lastnamefirstname' => 'שם משפחה שם פרטי (smith.jane@example.com)', 'first_name' => 'שם פרטי', 'first_name_format' => 'שם פרטי (jane@example.com)', 'files' => 'קבצים', diff --git a/resources/lang/hr-HR/account/general.php b/resources/lang/hr-HR/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/hr-HR/account/general.php +++ b/resources/lang/hr-HR/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/hr-HR/admin/locations/message.php b/resources/lang/hr-HR/admin/locations/message.php index 648892955..bf856a0fc 100644 --- a/resources/lang/hr-HR/admin/locations/message.php +++ b/resources/lang/hr-HR/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Lokacija ne postoji.', - 'assoc_users' => 'Ta je lokacija trenutačno povezana s barem jednim korisnikom i ne može se izbrisati. Ažurirajte korisnike da više ne referiraju ovu lokaciju i pokušajte ponovno.', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Ta je lokacija trenutačno povezana s barem jednim resursom i ne može se izbrisati. Ažurirajte svoju imovinu da više ne referira na tu lokaciju i pokušajte ponovno.', 'assoc_child_loc' => 'Ta je lokacija trenutačno roditelj najmanje jedne lokacije za djecu i ne može se izbrisati. Ažurirajte svoje lokacije da više ne referiraju ovu lokaciju i pokušajte ponovo.', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/hr-HR/admin/settings/general.php b/resources/lang/hr-HR/admin/settings/general.php index 1b999bb20..23d8a4751 100644 --- a/resources/lang/hr-HR/admin/settings/general.php +++ b/resources/lang/hr-HR/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Duljina oznaka za imovinu, uključujući nulte punjenje', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/hr-HR/general.php b/resources/lang/hr-HR/general.php index 99c468631..d7956bddb 100644 --- a/resources/lang/hr-HR/general.php +++ b/resources/lang/hr-HR/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'Inicijal imena i prezime (i.ivic)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Ime', 'first_name_format' => 'Ime (jane@example.com)', 'files' => 'Datoteke', diff --git a/resources/lang/hu-HU/account/general.php b/resources/lang/hu-HU/account/general.php index 04f85c803..dce4449d1 100644 --- a/resources/lang/hu-HU/account/general.php +++ b/resources/lang/hu-HU/account/general.php @@ -2,10 +2,10 @@ return array( 'personal_api_keys' => 'Személyes API kulcsok', - 'api_key_warning' => 'API token generálásakor ügyeljen arra, hogy azt azonnal lemásolja, mivel a nem lesz látható újra.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Az API alap url címe a következő:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'Az API tokenek lejárati ideje:', - 'api_reference' => 'Kérjük, ellenőrizze a API referenciákat ahol konkrét API végpontokat és további API dokumentációt talál.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'A fiók frissítése sikeres', ); diff --git a/resources/lang/hu-HU/admin/locations/message.php b/resources/lang/hu-HU/admin/locations/message.php index 5973b6003..7f8c25175 100644 --- a/resources/lang/hu-HU/admin/locations/message.php +++ b/resources/lang/hu-HU/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Hely nem létezik.', - 'assoc_users' => 'Ehhez a helyhez jelenleg hozzá van rendelve legalább egy felhasználó és nem törölhető. Kérjük, frissítse a felhasználót aki hozzá volt rendelve ehhez a helyhez, és próbálja meg újra. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Ez a hely jelenleg legalább egy eszközhöz társítva, és nem törölhető. Frissítse eszközeit, hogy ne hivatkozzon erre a helyre, és próbálja újra.', 'assoc_child_loc' => 'Ez a hely jelenleg legalább egy gyermek helye szülője, és nem törölhető. Frissítse tartózkodási helyeit, hogy ne hivatkozzon erre a helyre, és próbálja újra.', 'assigned_assets' => 'Hozzárendelt eszközök', diff --git a/resources/lang/hu-HU/admin/settings/general.php b/resources/lang/hu-HU/admin/settings/general.php index c23f352bd..977f5434a 100644 --- a/resources/lang/hu-HU/admin/settings/general.php +++ b/resources/lang/hu-HU/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Az eszközcímkék hossza, beleértve a nem töltöt', 'username_format_help' => 'Ezt a beállítást csak akkor használja az importálási folyamat, ha nem adtál meg felhasználónevet, és nekünk kell létrehoznunk neked egy felhasználónevet.', 'oauth_title' => 'OAuth API beállítások', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth végponti beállítások', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Eszközcímke-beállítások frissítése', 'barcode_title' => 'Vonalkód beállítások frissítése', 'barcodes' => 'Vonalkódok', diff --git a/resources/lang/hu-HU/general.php b/resources/lang/hu-HU/general.php index 0bd083cf2..3c3ca15ce 100644 --- a/resources/lang/hu-HU/general.php +++ b/resources/lang/hu-HU/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Vezetéknév majd keresztnév kezdőbetűje (smith_j@example.com)', 'firstinitial.lastname' => 'Keresztnév kezdőbetűje majd vezetéknév (j.smith@example.com)', 'firstnamelastinitial' => 'Keresztnév majd vezetéknév kezdőbetűje (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Keresztnév', 'first_name_format' => 'Keresztnév (jane@example.com)', 'files' => 'Fájlok', diff --git a/resources/lang/id-ID/account/general.php b/resources/lang/id-ID/account/general.php index 93d0c9773..671dd7f29 100644 --- a/resources/lang/id-ID/account/general.php +++ b/resources/lang/id-ID/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Kunci API Pribadi', - 'api_key_warning' => 'Saat membuat token API, pastikan untuk segera menyalinnya saat karena - token tersebut tidak akan muncul lagi.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'URL basis API Anda terletak di:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'Token API disetel kedaluwarsa dalam:', - 'api_reference' => 'Silakan periksa Referensi API untuk - menemukan titik akhir API tertentu dan dokumentasi API tambahan.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/id-ID/admin/locations/message.php b/resources/lang/id-ID/admin/locations/message.php index 096352d62..b9c13093c 100644 --- a/resources/lang/id-ID/admin/locations/message.php +++ b/resources/lang/id-ID/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Lokasi tidak ada.', - 'assoc_users' => 'Lokasi saat ini dikaitkan dengan setidaknya oleh satu pengguna dan tidak dapat dihapus. Perbarui pengguna Anda yang tidak ada referensi dari lokasi ini dan coba lagi. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Lokasi saat ini dikaitkan dengan setidaknya oleh satu aset dan tidak dapat dihapus. Perbarui aset Anda yang tidak ada referensi dari lokasi ini dan coba lagi. ', 'assoc_child_loc' => 'Lokasi saat ini digunakan oleh induk salah satu dari turunan lokasi dan tidak dapat di hapus. Mohon perbarui lokasi Anda ke yang tidak ada referensi dengan lokasi ini dan coba kembali. ', 'assigned_assets' => 'Aset yang Ditetapkan', diff --git a/resources/lang/id-ID/admin/settings/general.php b/resources/lang/id-ID/admin/settings/general.php index 096ecf5e1..9de9cd0d9 100644 --- a/resources/lang/id-ID/admin/settings/general.php +++ b/resources/lang/id-ID/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Jarak tag aset, termasuk angka nol', 'username_format_help' => 'Pengaturan ini hanya akan digunakan oleh proses impor jika nama pengguna tidak diberikan dan kami harus membuatkan nama pengguna untuk Anda.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/id-ID/general.php b/resources/lang/id-ID/general.php index 36b1906d2..6467fbd13 100644 --- a/resources/lang/id-ID/general.php +++ b/resources/lang/id-ID/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Nama Belakang Inisial Depan (smith_j@example.com)', 'firstinitial.lastname' => 'Nama Belakang Inisial Pertama (j.smith@example.com)', 'firstnamelastinitial' => 'Nama Depan Inisial Belakang (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Nama Depan', 'first_name_format' => 'Nama Depan (jane@example.com)', 'files' => 'File', diff --git a/resources/lang/is-IS/account/general.php b/resources/lang/is-IS/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/is-IS/account/general.php +++ b/resources/lang/is-IS/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/is-IS/admin/accessories/general.php b/resources/lang/is-IS/admin/accessories/general.php index 21f857444..da374f8a1 100644 --- a/resources/lang/is-IS/admin/accessories/general.php +++ b/resources/lang/is-IS/admin/accessories/general.php @@ -16,7 +16,7 @@ return array( 'update' => 'Uppfæra endabúnað', 'use_default_eula' => 'Notaðu frekar ', 'use_default_eula_disabled' => 'Notaðu frekar sjálfgefna notendaskilmálana.Sjálfgefnu notendaskilmálarnir eru ekki í notkun. Vinsamlegast bættu einhverjum notendaskilmálum við í undir "Stillingar"', - 'clone' => 'Clone Accessory', - 'delete_disabled' => 'This accessory cannot be deleted yet because some items are still checked out.', + 'clone' => 'Klóna aukabúnað', + 'delete_disabled' => 'Ekki hægt að eyða búnaði, þar sem hann er ennþá í skráður út.', ); diff --git a/resources/lang/is-IS/admin/companies/message.php b/resources/lang/is-IS/admin/companies/message.php index 2205e04d2..9b27012e0 100644 --- a/resources/lang/is-IS/admin/companies/message.php +++ b/resources/lang/is-IS/admin/companies/message.php @@ -1,8 +1,8 @@ 'Company does not exist.', - 'deleted' => 'Deleted company', + 'does_not_exist' => 'Fyrirtæki er ekki til.', + 'deleted' => 'Fyrirtæki eytt', 'assoc_users' => 'This company is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this company and try again. ', 'create' => [ 'error' => 'Company was not created, please try again.', diff --git a/resources/lang/is-IS/admin/companies/table.php b/resources/lang/is-IS/admin/companies/table.php index f1fb48771..c6b9966ff 100644 --- a/resources/lang/is-IS/admin/companies/table.php +++ b/resources/lang/is-IS/admin/companies/table.php @@ -2,9 +2,9 @@ return array( 'companies' => 'Fyrirtæki', 'create' => 'Skrá fyrirtæki', - 'email' => 'Company Email', + 'email' => 'Netfang fyrirtækisins', 'title' => 'Fyrirtæki', - 'phone' => 'Company Phone', + 'phone' => 'Símanúmer fyrirtækisins', 'update' => 'Uppfæra fyrirtæki', 'name' => 'Heiti fyrirtækis', 'id' => 'ID', diff --git a/resources/lang/is-IS/admin/hardware/general.php b/resources/lang/is-IS/admin/hardware/general.php index 22b31bf2d..9e0fec3ce 100644 --- a/resources/lang/is-IS/admin/hardware/general.php +++ b/resources/lang/is-IS/admin/hardware/general.php @@ -6,20 +6,20 @@ return [ 'archived' => 'Safnvistað', 'asset' => 'Eign', 'bulk_checkout' => 'Ráðstafa eignum', - 'bulk_checkin' => 'Checkin Assets', + 'bulk_checkin' => 'Skrá inn eignir', 'checkin' => 'Skila eign', 'checkout' => 'Ráðstafa eign', 'clone' => 'Klóna eign', 'deployable' => 'Nothæfar', 'deleted' => 'Þessari eign hefur verið eytt', - 'delete_confirm' => 'Are you sure you want to delete this asset?', + 'delete_confirm' => 'Ertu viss um að þú viljir eyða þessari eign?', 'edit' => 'Breyta eign', - 'model_deleted' => 'This Assets model has been deleted. You must restore the model before you can restore the Asset.', + 'model_deleted' => 'Þessari eignategund hefur verið eytt. Þú verður að endurheimta tegundina áður en þú getur endurheimt eignina.', 'model_invalid' => 'This model for this asset is invalid.', 'model_invalid_fix' => 'The asset must be updated use a valid asset model before attempting to check it in or out, or to audit it.', 'requestable' => 'Lausar', 'requested' => 'óskað eftir', - 'not_requestable' => 'Not Requestable', + 'not_requestable' => 'Ekki hægt að óska eftir', 'requestable_status_warning' => 'Do not change requestable status', 'restore' => 'Restore Asset', 'pending' => 'Á bið', diff --git a/resources/lang/is-IS/admin/hardware/message.php b/resources/lang/is-IS/admin/hardware/message.php index e3abb175d..4091f932e 100644 --- a/resources/lang/is-IS/admin/hardware/message.php +++ b/resources/lang/is-IS/admin/hardware/message.php @@ -34,7 +34,7 @@ return [ ], 'audit' => [ - 'error' => 'Asset audit unsuccessful: :error ', + 'error' => 'Eignaúttekt var ekki skráð. Vinsamlegast reyndu aftur: :error ', 'success' => 'Eignaúttekt var skráð.', ], diff --git a/resources/lang/is-IS/admin/locations/message.php b/resources/lang/is-IS/admin/locations/message.php index bcdf2258c..20c375904 100644 --- a/resources/lang/is-IS/admin/locations/message.php +++ b/resources/lang/is-IS/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Staðsetningin er ekki til.', - 'assoc_users' => 'This location is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this location and try again. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ', 'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ', 'assigned_assets' => 'Skráðar eignir', diff --git a/resources/lang/is-IS/admin/locations/table.php b/resources/lang/is-IS/admin/locations/table.php index b37d7b73a..68a16d7e0 100644 --- a/resources/lang/is-IS/admin/locations/table.php +++ b/resources/lang/is-IS/admin/locations/table.php @@ -34,7 +34,7 @@ return [ 'asset_checked_out' => 'Skráð út', 'asset_expected_checkin' => 'Áætluð skil', 'date' => 'Dagsetning:', - 'phone' => 'Location Phone', + 'phone' => 'Símanúmer á staðsetningu', 'signed_by_asset_auditor' => 'Undirritað af (fulltrúa Tölvudeildar):', 'signed_by_finance_auditor' => 'Undirritað af (fulltrúa fjármáladeildar):', 'signed_by_location_manager' => 'Undirritað af (fulltrúa forstöðumanns):', diff --git a/resources/lang/is-IS/admin/models/general.php b/resources/lang/is-IS/admin/models/general.php index 9775c9940..53b3e7256 100644 --- a/resources/lang/is-IS/admin/models/general.php +++ b/resources/lang/is-IS/admin/models/general.php @@ -1,18 +1,18 @@ 'About Asset Models', - 'about_models_text' => 'Asset Models are a way to group identical assets. "MBP 2013", "IPhone 6s", etc.', - 'deleted' => 'This model has been deleted.', - 'bulk_delete' => 'Bulk Delete Asset Models', - 'bulk_delete_help' => 'Use the checkboxes below to confirm the deletion of the selected asset models. Asset models that have assets associated with them cannot be deleted until the assets are associated with a different model.', - 'bulk_delete_warn' => 'You are about to delete one asset model.|You are about to delete :model_count asset models.', - 'restore' => 'Restore Model', - 'requestable' => 'Users may request this model', - 'show_mac_address' => 'Show MAC address field in assets in this model', - 'view_deleted' => 'View Deleted', - 'view_models' => 'View Models', + 'about_models_title' => 'Um Eignategundir', + 'about_models_text' => 'Eignategundir eru leið til að flokka eins eignir. "MBP 2013", "IPhone 6s" osfrv.', + 'deleted' => 'Þessari tegund hefur verið eytt.', + 'bulk_delete' => 'Fjöldaeyða eignategundum', + 'bulk_delete_help' => 'Notaðu boxin hér að neðan til að staðfesta eyðingu á völdum eignategundum. Eignategundir sem hafa eignir tengdar við sig er ekki hægt að eyða fyrr en eignirnar eru tengdar öðru tegund.', + 'bulk_delete_warn' => 'Þú ert að fara að eyða einni eignategund.|Þú ert að fara að eyða :model_count eignategund.', + 'restore' => 'Endurheimta tegund', + 'requestable' => 'Notendur geta óskað eftir þessari tegund', + 'show_mac_address' => 'Sýna MAC vistfang reitinn í eignum fyrir þessa tegund', + 'view_deleted' => 'Skoða eytt', + 'view_models' => 'Skoða tegundir', 'fieldset' => 'Reitasett', - 'no_custom_field' => 'No custom fields', + 'no_custom_field' => 'Engir sérsniðnir reitir', 'add_default_values' => 'Add default values', ); diff --git a/resources/lang/is-IS/admin/models/message.php b/resources/lang/is-IS/admin/models/message.php index ed78a4072..351ed8797 100644 --- a/resources/lang/is-IS/admin/models/message.php +++ b/resources/lang/is-IS/admin/models/message.php @@ -3,45 +3,45 @@ return array( 'deleted' => 'Eyða tegund eigna', - 'does_not_exist' => 'Model does not exist.', - 'no_association' => 'WARNING! The asset model for this item is invalid or missing!', - 'no_association_fix' => 'This will break things in weird and horrible ways. Edit this asset now to assign it a model.', - 'assoc_users' => 'This model is currently associated with one or more assets and cannot be deleted. Please delete the assets, and then try deleting again. ', + 'does_not_exist' => 'Tegund ekki til.', + 'no_association' => 'VIÐVÖRUN! Eignategund fyrir þennan hlut er ógilt eða vantar!', + 'no_association_fix' => 'Þetta mun brjóta hlutina á undarlegan og hræðilegan hátt. Breyttu þessari eign núna til að úthluta henni fyrirmynd.', + 'assoc_users' => 'Þessi tegund er sem stendur tengt einni eða fleiri eignum og ekki er hægt að eyða því. Vinsamlegast eyddu eignunum og reyndu síðan að eyða aftur. ', 'create' => array( - 'error' => 'Model was not created, please try again.', - 'success' => 'Model created successfully.', - 'duplicate_set' => 'An asset model with that name, manufacturer and model number already exists.', + 'error' => 'Tegundin var ekki búið til, vinsamlegast reyndu aftur.', + 'success' => 'Tegund búin til.', + 'duplicate_set' => 'Eignategund með þessu nafni, framleiðanda og tegundarnúmeri er þegar til.', ), 'update' => array( - 'error' => 'Model was not updated, please try again', - 'success' => 'Model updated successfully.', + 'error' => 'Tegund var ekki uppfærð, vinsamlegast reyndu aftur', + 'success' => 'Tegund uppfærð.', ), 'delete' => array( - 'confirm' => 'Are you sure you wish to delete this asset model?', - 'error' => 'There was an issue deleting the model. Please try again.', - 'success' => 'The model was deleted successfully.' + 'confirm' => 'Ertu viss um að þú viljir eyða þessu eignategund?', + 'error' => 'Vandamál kom upp við að eyða tegundinni. Vinsamlegast reyndu aftur.', + 'success' => 'Tegund var eytt.' ), 'restore' => array( - 'error' => 'Model was not restored, please try again', - 'success' => 'Model restored successfully.' + 'error' => 'Tegund var ekki endurheimt, vinsamlegast reyndu aftur', + 'success' => 'Tegund endurheimt.' ), 'bulkedit' => array( - 'error' => 'No fields were changed, so nothing was updated.', - 'success' => 'Model successfully updated. |:model_count models successfully updated.', - 'warn' => 'You are about to update the properties of the following model:|You are about to edit the properties of the following :model_count models:', + 'error' => 'Engum reitum var breytt, svo ekkert var uppfært.', + 'success' => 'Tegund uppfært. |:model_count Tegundir uppfærð.', + 'warn' => 'Þú ert að fara að uppfæra eiginleika eftirfarandi model:|Þú ert að fara að breyta eiginleikum eftirfarandi :model_count tegunda:', ), 'bulkdelete' => array( - 'error' => 'No models were selected, so nothing was deleted.', - 'success' => 'Model deleted!|:success_count models deleted!', - 'success_partial' => ':success_count model(s) were deleted, however :fail_count were unable to be deleted because they still have assets associated with them.' + 'error' => 'Engar tegundir voru valdar og því var engu eytt.', + 'success' => 'Tegund eytt!|:success_count tegundum eytt!', + 'success_partial' => ':success_count tegund(um) var eytt, hins vegar var ekki hægt að eyða :fail_count vegna þess að þau hafa enn eignir tengdar þeim.' ), ); diff --git a/resources/lang/is-IS/admin/models/table.php b/resources/lang/is-IS/admin/models/table.php index 4590eea58..5c3181ff6 100644 --- a/resources/lang/is-IS/admin/models/table.php +++ b/resources/lang/is-IS/admin/models/table.php @@ -2,16 +2,16 @@ return array( - 'create' => 'Create Asset Model', + 'create' => 'Búa til eignategund', 'created_at' => 'Created at', 'eol' => 'Lok línu', 'modelnumber' => 'Tegundar Nr.', - 'name' => 'Asset Model Name', + 'name' => 'Nafn eignategundar', 'numassets' => 'Eignir', 'title' => 'Tegundir', - 'update' => 'Update Asset Model', - 'view' => 'View Asset Model', - 'update' => 'Update Asset Model', - 'clone' => 'Clone Model', - 'edit' => 'Edit Model', + 'update' => 'Uppfæra eignategund', + 'view' => 'Skoða eignategund', + 'update' => 'Uppfæra eignategund', + 'clone' => 'Klóna tegund', + 'edit' => 'Breyta tegund', ); diff --git a/resources/lang/is-IS/admin/settings/general.php b/resources/lang/is-IS/admin/settings/general.php index dce28b9d5..48408941c 100644 --- a/resources/lang/is-IS/admin/settings/general.php +++ b/resources/lang/is-IS/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Length of asset tags, including zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/is-IS/auth.php b/resources/lang/is-IS/auth.php index db310aa1b..d5298e17a 100644 --- a/resources/lang/is-IS/auth.php +++ b/resources/lang/is-IS/auth.php @@ -13,8 +13,8 @@ return array( | */ - 'failed' => 'These credentials do not match our records.', - 'password' => 'The provided password is incorrect.', - 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', + 'failed' => 'Þessar auðkenningar passa ekki við okkar skráningar.', + 'password' => 'Uppgefið lykilorð er rangt.', + 'throttle' => 'Of margar innskráningartilraunir. Vinsamlegast reyndu aftur eftir :seconds sekúndur.', ); diff --git a/resources/lang/is-IS/auth/general.php b/resources/lang/is-IS/auth/general.php index f2b56ddc4..50dd27d24 100644 --- a/resources/lang/is-IS/auth/general.php +++ b/resources/lang/is-IS/auth/general.php @@ -2,15 +2,15 @@ return [ 'send_password_link' => 'Send Password Reset Link', - 'email_reset_password' => 'Email Password Reset', - 'reset_password' => 'Reset Password', - 'saml_login' => 'Login via SAML', + 'email_reset_password' => 'Endurstilla lykilorð í gegnum t-póst', + 'reset_password' => 'Endurstilla lykilorð', + 'saml_login' => 'Innskráning með SAML - auðkenningu', 'login' => 'Login', - 'login_prompt' => 'Please Login', + 'login_prompt' => 'Vinsamlegast skráðu þig inn', 'forgot_password' => 'Ég hef gleymt lykilorðinu mínu', - 'ldap_reset_password' => 'Please click here to reset your LDAP password', + 'ldap_reset_password' => 'Vinsamlegast smelltu hér til að endurstilla LDAP lykilorðið þitt', 'remember_me' => 'Muna eftir mér', - 'username_help_top' => 'Enter your username to be emailed a password reset link.', + 'username_help_top' => 'Sláðu inn notandanafn þitt til að fá sendan hlekk til að endurstilla lykilorð í tölvupósti.', 'username_help_bottom' => 'Your username and email address may be the same, but may not be, depending on your configuration. If you cannot remember your username, contact your administrator.

Usernames without an associated email address will not be emailed a password reset link. ', 'google_login' => 'Login with Google Workspace', 'google_login_failed' => 'Google Login failed, please try again.', diff --git a/resources/lang/is-IS/auth/message.php b/resources/lang/is-IS/auth/message.php index f086d8c04..5cb016542 100644 --- a/resources/lang/is-IS/auth/message.php +++ b/resources/lang/is-IS/auth/message.php @@ -2,43 +2,43 @@ return array( - 'account_already_exists' => 'An account with the this email already exists.', - 'account_not_found' => 'The username or password is incorrect.', - 'account_not_activated' => 'This user account is not activated.', - 'account_suspended' => 'This user account is suspended.', - 'account_banned' => 'This user account is banned.', - 'throttle' => 'Too many failed login attempts. Please try again in :minutes minutes.', + 'account_already_exists' => 'Notendareikningur með þessum tölvupósti er þegar til.', + 'account_not_found' => 'Notandanafnið eða lykilorðið er rangt.', + 'account_not_activated' => 'Þessi notendareikningur er ekki virkur.', + 'account_suspended' => 'Þessum notandareikningi er lokað.', + 'account_banned' => 'Þessi notendareikningur er bannaður.', + 'throttle' => 'Of margar misheppnaðar innskráningartilraunir. Vinsamlegast reyndu aftur eftir :minutes mínútur.', 'two_factor' => array( - 'already_enrolled' => 'Your device is already enrolled.', - 'success' => 'You have successfully logged in.', - 'code_required' => 'Two-factor code is required.', - 'invalid_code' => 'Two-factor code is invalid.', + 'already_enrolled' => 'Tækið þitt er þegar skráð.', + 'success' => 'Þú hefur skráð þig inn.', + 'code_required' => 'Tveggja þátta kóða er krafist.', + 'invalid_code' => 'Tveggja þátta kóði er ógildur.', ), 'signin' => array( - 'error' => 'There was a problem while trying to log you in, please try again.', - 'success' => 'You have successfully logged in.', + 'error' => 'Það kom upp vandamál þegar reynt var að skrá þig inn, vinsamlegast reyndu aftur.', + 'success' => 'Þú hefur skráð þig inn.', ), 'logout' => array( - 'error' => 'There was a problem while trying to log you out, please try again.', - 'success' => 'You have successfully logged out.', + 'error' => 'Það kom upp vandamál þegar reynt var að skrá þig út, vinsamlegast reyndu aftur.', + 'success' => 'Þú hefur skráð þig út.', ), 'signup' => array( - 'error' => 'There was a problem while trying to create your account, please try again.', - 'success' => 'Account sucessfully created.', + 'error' => 'Það kom upp vandamál þegar reynt var að búa til reikninginn þinn, vinsamlegast reyndu aftur.', + 'success' => 'Notendareikningur búinn til.', ), 'forgot-password' => array( - 'error' => 'There was a problem while trying to get a reset password code, please try again.', - 'success' => 'If that email address exists in our system, a password recovery email has been sent.', + 'error' => 'Það kom upp vandamál þegar reynt var að fá endurstillt lykilorð, vinsamlegast reyndu aftur.', + 'success' => 'Ef þetta netfang er til í kerfinu okkar, þá hefur tölvupóstur með endurheimt lykilorð verið sendur.', ), 'forgot-password-confirm' => array( - 'error' => 'There was a problem while trying to reset your password, please try again.', - 'success' => 'Your password has been successfully reset.', + 'error' => 'Það kom upp vandamál þegar reynt var að endurstilla lykilorðið þitt, vinsamlegast reyndu aftur.', + 'success' => 'Lykilorðið þitt hefur verið endurstillt.', ), diff --git a/resources/lang/is-IS/general.php b/resources/lang/is-IS/general.php index 58b75c9bc..f641fab8a 100644 --- a/resources/lang/is-IS/general.php +++ b/resources/lang/is-IS/general.php @@ -1,10 +1,10 @@ '2FA reset', + '2FA_reset' => '2FA endurstillt', 'accessories' => 'Aukahlutir', 'activated' => 'Virkjað', - 'accepted_date' => 'Date Accepted', + 'accepted_date' => 'Dagsetning samþykkt', 'accessory' => 'Aukahlutur', 'accessory_report' => 'Aukahlutaskýrsla', 'action' => 'Aðgerð', @@ -36,9 +36,9 @@ return [ 'assets_checked_in_count' => 'assets checked in', 'assets_checked_out_count' => 'assets checked out', 'asset_deleted_warning' => 'This asset has been deleted. You must restore it before you can assign it to someone.', - 'assigned_date' => 'Date Assigned', + 'assigned_date' => 'Úthlutunar dagsetning', 'assigned_to' => 'Skráð á', - 'assignee' => 'Assigned to', + 'assignee' => 'Úthlutað til', 'avatar_delete' => 'Delete Avatar', 'avatar_upload' => 'Upload Avatar', 'back' => 'Til baka', @@ -51,7 +51,7 @@ return [ 'bulk_actions' => 'Bulk Actions', 'bulk_checkin_delete' => 'Bulk Checkin / Delete Users', 'byod' => 'BYOD', - 'byod_help' => 'This device is owned by the user', + 'byod_help' => 'Þetta tæki er í einkaeigu notenda', 'bystatus' => 'eftir stöðu', 'cancel' => 'Hætta við', 'categories' => 'Vöruflokkar', @@ -98,7 +98,7 @@ return [ 'debug_warning_text' => 'This application is running in production mode with debugging enabled. This can expose sensitive data if your application is accessible to the outside world. Disable debug mode by setting the APP_DEBUG value in your .env file to false.', 'delete' => 'Eyða', 'delete_confirm' => 'Ertu viss um að þú viljir eyða þessum :item?', - 'delete_confirm_no_undo' => 'Are you sure you wish to delete :item? This can not be undone.', + 'delete_confirm_no_undo' => 'Ertu viss um að þú viljir eyða þessum :item? Þessi aðgerð er óafturkræf.', 'deleted' => 'Eytt', 'delete_seats' => 'Eydd leyfi', 'deletion_failed' => 'Eyðing mistókst', @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Fornafn', 'first_name_format' => 'Fornafn (jane@example.com)', 'files' => 'Skrár', @@ -179,14 +180,14 @@ return [ 'last_name' => 'Eftirnafn', 'license' => 'Leyfi', 'license_report' => 'Leyfisskýrsla', - 'licenses_available' => 'Licenses available', + 'licenses_available' => 'Hugbúnaðarleyfi í boði', 'licenses' => 'Leyfi', 'list_all' => 'Sýna allt', 'loading' => 'Hleð... vinsamlega bíðið....', 'lock_passwords' => 'This field value will not be saved in a demo installation.', 'feature_disabled' => 'This feature has been disabled for the demo installation.', 'location' => 'Staðsetning', - 'location_plural' => 'Location|Locations', + 'location_plural' => 'Staðsetning|Staðsetningar', 'locations' => 'Staðsetningar', 'logo_size' => 'Square logos look best with Logo + Text. Logo maximum display size is 50px high x 500px wide. ', 'logout' => 'Útskráning', diff --git a/resources/lang/is-IS/mail.php b/resources/lang/is-IS/mail.php index e0c333790..9163a1702 100644 --- a/resources/lang/is-IS/mail.php +++ b/resources/lang/is-IS/mail.php @@ -3,16 +3,16 @@ return [ 'Accessory_Checkin_Notification' => 'Accessory checked in', - 'Accessory_Checkout_Notification' => 'Accessory checked out', + 'Accessory_Checkout_Notification' => 'Aukabúnaður skráður út', 'Asset_Checkin_Notification' => 'Asset checked in', - 'Asset_Checkout_Notification' => 'Asset checked out', + 'Asset_Checkout_Notification' => 'Eign skráð út', 'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation', 'Confirm_Asset_Checkin' => 'Asset checkin confirmation', 'Confirm_accessory_delivery' => 'Accessory delivery confirmation', 'Confirm_asset_delivery' => 'Asset delivery confirmation', 'Confirm_consumable_delivery' => 'Consumable delivery confirmation', 'Confirm_license_delivery' => 'License delivery confirmation', - 'Consumable_checkout_notification' => 'Consumable checked out', + 'Consumable_checkout_notification' => 'Rekstrarvörur skráðar út', 'Days' => 'Dagar', 'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date', 'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching', @@ -22,7 +22,7 @@ return [ 'Item_Request_Canceled' => 'Item Request Canceled', 'Item_Requested' => 'Item Requested', 'License_Checkin_Notification' => 'License checked in', - 'License_Checkout_Notification' => 'License checked out', + 'License_Checkout_Notification' => 'Hugbúnaðarleyfi skráð út', 'Low_Inventory_Report' => 'Skýrsla um lága birgðastöðu', 'a_user_canceled' => 'A user has canceled an item request on the website', 'a_user_requested' => 'A user has requested an item on the website', @@ -41,9 +41,9 @@ return [ 'canceled' => 'Canceled:', 'checkin_date' => 'Checkin Date:', 'checkout_date' => 'Checkout Date:', - 'checkedout_from' => 'Checked out from', - 'checkedin_from' => 'Checked in from', - 'checked_into' => 'Checked into', + 'checkedout_from' => 'Skráð út frá', + 'checkedin_from' => 'Skráð inn frá', + 'checked_into' => 'Skráð inní', 'click_on_the_link_accessory' => 'Please click on the link at the bottom to confirm that you have received the accessory.', 'click_on_the_link_asset' => 'Please click on the link at the bottom to confirm that you have received the asset.', 'click_to_confirm' => 'Please click on the following link to confirm your :web account:', diff --git a/resources/lang/it-IT/account/general.php b/resources/lang/it-IT/account/general.php index a38fdf085..1260a5b7c 100644 --- a/resources/lang/it-IT/account/general.php +++ b/resources/lang/it-IT/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Chiavi API Personali', - 'api_key_warning' => 'Quando si genera un token API, assicurati di copiarlo immediatamente perché - non potrai più visualizzarlo.', + 'api_key_warning' => 'Quando si genera un token API, copialo immediatamente perché dopo non sarà più visibile.', 'api_base_url' => 'Il tuo URL di base API è:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'I token API scadranno fra:', - 'api_reference' => 'Controlla la
Guida di Riferimento delle API per - trovare gli endpoint API specifici e documentazione aggiuntiva.', + 'api_reference' => 'Controlla la Guida di Riferimento delle API per trovare specifici endpoint API e documentazione aggiuntiva.', 'profile_updated' => 'Account aggiornato con successo', ); diff --git a/resources/lang/it-IT/admin/locations/message.php b/resources/lang/it-IT/admin/locations/message.php index 7fa6a234e..54d7cee83 100644 --- a/resources/lang/it-IT/admin/locations/message.php +++ b/resources/lang/it-IT/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'La posizione non esiste.', - 'assoc_users' => 'Questa posizione è associata ad almeno un utente e non può essere cancellata. Si prega di aggiornare i vostri utenti di riferimento e riprovare. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Questa posizione è associata ad almeno un prodotto e non può essere cancellata. Si prega di aggiornare i vostri prodotti di riferimento e riprovare. ', 'assoc_child_loc' => 'Questa posizione è parente di almeno un\'altra posizione e non può essere cancellata. Si prega di aggiornare le vostre posizioni di riferimento e riprovare. ', 'assigned_assets' => 'Beni Assegnati', diff --git a/resources/lang/it-IT/admin/settings/general.php b/resources/lang/it-IT/admin/settings/general.php index 6694f39b1..c07437bdd 100644 --- a/resources/lang/it-IT/admin/settings/general.php +++ b/resources/lang/it-IT/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Lunghezza dei tag di asset, incluso zerofill', 'username_format_help' => 'Questa impostazione sarà usata dal processo di importazione solo se un nome utente non è fornito, e se è necessario creare un nome utente.', 'oauth_title' => 'Impostazioni API OAuth', + 'oauth_clients' => 'Clients OAuth', 'oauth' => 'OAuth', 'oauth_help' => 'Impostazioni Endpoint OAuth', + 'oauth_no_clients' => 'Non hai ancora creato alcun client OAuth.', + 'oauth_secret' => 'Segreto', + 'oauth_authorized_apps' => 'Applicazioni Autorizzate', + 'oauth_redirect_url' => 'URL di reindirizzamento', + 'oauth_name_help' => ' Usa un nome affidabile e riconoscibile.', + 'oauth_scopes' => 'Scope', + 'oauth_callback_url' => 'URL di callback di autorizzazione dell\'applicazione.', + 'create_client' => 'Crea Client', + 'no_scopes' => 'Nessuno scope', 'asset_tag_title' => 'Aggiorna Impostazioni Tag Beni', 'barcode_title' => 'Aggiorna Impostazioni Codici A Barre', 'barcodes' => 'Codici a barre', diff --git a/resources/lang/it-IT/general.php b/resources/lang/it-IT/general.php index 69cdac0fe..ab27d7b25 100644 --- a/resources/lang/it-IT/general.php +++ b/resources/lang/it-IT/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Cognome_ Iniziale Nome (smith_j@example.com)', 'firstinitial.lastname' => 'Iniziale Nome . Cognome (j.smith@example.com)', 'firstnamelastinitial' => 'Nome + Iniziale Cognome (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Nome', 'first_name_format' => 'Nome (jane@example.com)', 'files' => 'Files', diff --git a/resources/lang/iu-NU/account/general.php b/resources/lang/iu-NU/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/iu-NU/account/general.php +++ b/resources/lang/iu-NU/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/iu-NU/admin/locations/message.php b/resources/lang/iu-NU/admin/locations/message.php index 22c7fe8f7..8121b8068 100644 --- a/resources/lang/iu-NU/admin/locations/message.php +++ b/resources/lang/iu-NU/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Location does not exist.', - 'assoc_users' => 'This location is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this location and try again. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ', 'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/iu-NU/admin/settings/general.php b/resources/lang/iu-NU/admin/settings/general.php index 01adf36eb..727c35a6e 100644 --- a/resources/lang/iu-NU/admin/settings/general.php +++ b/resources/lang/iu-NU/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Length of asset tags, including zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/iu-NU/general.php b/resources/lang/iu-NU/general.php index ec0b8e6ee..7777302a6 100644 --- a/resources/lang/iu-NU/general.php +++ b/resources/lang/iu-NU/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'First Name', 'first_name_format' => 'First Name (jane@example.com)', 'files' => 'Files', diff --git a/resources/lang/ja-JP/account/general.php b/resources/lang/ja-JP/account/general.php index 838df6b2b..dfb543b43 100644 --- a/resources/lang/ja-JP/account/general.php +++ b/resources/lang/ja-JP/account/general.php @@ -2,10 +2,10 @@ return array( 'personal_api_keys' => '個人用APIキー', - 'api_key_warning' => 'APIトークンを生成した場合、二度と表示されないので必ずすぐにコピーしてください。', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'APIベースURLは以下の場所です:', 'api_base_url_endpoint' => '/<エンドポイント>', 'api_token_expiration_time' => 'APIトークンの有効期限:', - 'api_reference' => 'API リファレンス を確認して、特定のAPI エンドポイントと追加のAPIドキュメントを見つけてください。', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/ja-JP/admin/locations/message.php b/resources/lang/ja-JP/admin/locations/message.php index d7d0501ea..d9bd56017 100644 --- a/resources/lang/ja-JP/admin/locations/message.php +++ b/resources/lang/ja-JP/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'ロケーションが存在しません。', - 'assoc_users' => 'ロケーションは少なくとも一つの利用者に関連付けされているため、削除できません。ローケーションの関連付けを削除し、もう一度試して下さい。 ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'この設置場所は1人以上の利用者に関連付けされているため、削除できません。設置場所の関連付けを削除し、もう一度試して下さい。 ', 'assoc_child_loc' => 'この設置場所は、少なくとも一つの配下の設置場所があります。この設置場所を参照しないよう更新して下さい。 ', 'assigned_assets' => '割り当て済みアセット', diff --git a/resources/lang/ja-JP/admin/settings/general.php b/resources/lang/ja-JP/admin/settings/general.php index 58ebab40f..49e60a9fb 100644 --- a/resources/lang/ja-JP/admin/settings/general.php +++ b/resources/lang/ja-JP/admin/settings/general.php @@ -290,8 +290,18 @@ return [ 'zerofill_count' => '資産タグの長さ (ゼロ埋め含む)', 'username_format_help' => 'この設定は、ユーザー名が指定されておらず、ユーザー名を生成する必要がある場合にのみインポートプロセスで使用されます。', 'oauth_title' => 'OAuth API 設定', + 'oauth_clients' => 'OAuthクライアント', 'oauth' => 'OAuth', 'oauth_help' => 'OAuth エンドポイント設定', + 'oauth_no_clients' => 'まだ OAuth クライアントを作成していません。', + 'oauth_secret' => 'シークレット', + 'oauth_authorized_apps' => '承認済みアプリケーション', + 'oauth_redirect_url' => 'リダイレクトURL', + 'oauth_name_help' => ' ユーザーが認識し、信頼できる認証情報', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => '資産タグ設定を更新', 'barcode_title' => 'バーコード設定を更新', 'barcodes' => 'バーコード', diff --git a/resources/lang/ja-JP/general.php b/resources/lang/ja-JP/general.php index 186f2e454..42c66cdda 100644 --- a/resources/lang/ja-JP/general.php +++ b/resources/lang/ja-JP/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => '苗字_名前のイニシャル (smith_j@example.com)', 'firstinitial.lastname' => '名前.イニシャルと苗字 (j.smith@example.com)', 'firstnamelastinitial' => '名前と苗字のイニシャル (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => '名前', 'first_name_format' => '名前 (jane@example.com)', 'files' => 'ファイル', diff --git a/resources/lang/km-KH/account/general.php b/resources/lang/km-KH/account/general.php index 0213cea48..42074ab0a 100644 --- a/resources/lang/km-KH/account/general.php +++ b/resources/lang/km-KH/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'សោ API ផ្ទាល់ខ្លួន', - 'api_key_warning' => 'នៅពេលបង្កើតនិមិត្តសញ្ញា API ត្រូវប្រាកដថាចម្លងវាភ្លាមៗដូចដែលពួកវា - នឹងមិនបង្ហាញឱ្យអ្នកឃើញម្តងទៀតទេ។', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Url មូលដ្ឋាន API របស់អ្នកមានទីតាំងនៅ៖', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'និមិត្តសញ្ញា API ត្រូវបានកំណត់ឱ្យផុតកំណត់នៅក្នុង៖', - 'api_reference' => 'សូមពិនិត្យមើល ឯកសារយោង API ទៅ - ស្វែងរកចំណុចបញ្ចប់ API ជាក់លាក់ និងឯកសារ API បន្ថែម', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'ធ្វើបច្ចុប្បន្នភាពគណនីដោយជោគជ័យ', ); diff --git a/resources/lang/km-KH/admin/locations/message.php b/resources/lang/km-KH/admin/locations/message.php index e73f74f18..326cd9793 100644 --- a/resources/lang/km-KH/admin/locations/message.php +++ b/resources/lang/km-KH/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'ទីតាំងមិនមានទេ។', - 'assoc_users' => 'បច្ចុប្បន្នទីតាំងនេះត្រូវបានភ្ជាប់ជាមួយអ្នកប្រើប្រាស់យ៉ាងហោចណាស់ម្នាក់ ហើយមិនអាចលុបបានទេ។ សូមអាប់ដេតអ្នកប្រើប្រាស់របស់អ្នក ដើម្បីកុំឱ្យយោងទីតាំងនេះតទៅទៀត ហើយព្យាយាមម្តងទៀត។ ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'បច្ចុប្បន្នទីតាំងនេះត្រូវបានភ្ជាប់ជាមួយទ្រព្យសកម្មយ៉ាងហោចណាស់មួយ ហើយមិនអាចលុបបានទេ។ សូមអាប់ដេតទ្រព្យសកម្មរបស់អ្នក ដើម្បីកុំឱ្យយោងទីតាំងនេះតទៅទៀត ហើយព្យាយាមម្តងទៀត។ ', 'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ', 'assigned_assets' => 'ទ្រព្យសកម្មដែលបានចាត់តាំង', diff --git a/resources/lang/km-KH/admin/settings/general.php b/resources/lang/km-KH/admin/settings/general.php index 0c70ef3ef..2c7b570c0 100644 --- a/resources/lang/km-KH/admin/settings/general.php +++ b/resources/lang/km-KH/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Length of asset tags, including zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/km-KH/general.php b/resources/lang/km-KH/general.php index f88b0a687..402326df3 100644 --- a/resources/lang/km-KH/general.php +++ b/resources/lang/km-KH/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'នាមត្រកូល នាមខ្លួនដំបូង (smith_j@example.com)', 'firstinitial.lastname' => 'នាមត្រកូលដំបូង (j.smith@example.com)', 'firstnamelastinitial' => 'នាមខ្លួន នាមត្រកូលដំបូង (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'នាមខ្លួន', 'first_name_format' => 'នាមខ្លួន (jane@example.com)', 'files' => 'ឯកសារ', diff --git a/resources/lang/ko-KR/account/general.php b/resources/lang/ko-KR/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/ko-KR/account/general.php +++ b/resources/lang/ko-KR/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/ko-KR/admin/locations/message.php b/resources/lang/ko-KR/admin/locations/message.php index e13c6c2a8..364b2dbd6 100644 --- a/resources/lang/ko-KR/admin/locations/message.php +++ b/resources/lang/ko-KR/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => '장소가 존재하지 않습니다.', - 'assoc_users' => '이 장소는 현재 적어도 한명의 사용자와 연결되어 있어서 삭제할 수 없습니다. 사용자가 더 이상 이 장소를 참조하지 않게 갱신하고 다시 시도해주세요. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => '이 장소는 현재 적어도 한명의 사용자와 연결되어 있어서 삭제할 수 없습니다. 사용자가 더 이상 이 장소를 참조하지 않게 갱신하고 다시 시도해주세요. ', 'assoc_child_loc' => '이 장소는 현재 하나 이상의 하위 장소를 가지고 있기에 삭제 할 수 없습니다. 이 장소의 참조를 수정하고 다시 시도해 주세요. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/ko-KR/admin/settings/general.php b/resources/lang/ko-KR/admin/settings/general.php index 9806d35df..2b9d3e8cf 100644 --- a/resources/lang/ko-KR/admin/settings/general.php +++ b/resources/lang/ko-KR/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => '0 채움을 포함한, 자산 태그 길이', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/ko-KR/general.php b/resources/lang/ko-KR/general.php index 3c5db81d8..a025ab195 100644 --- a/resources/lang/ko-KR/general.php +++ b/resources/lang/ko-KR/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => '이름', 'first_name_format' => '이름 (jane@example.com)', 'files' => '파일', diff --git a/resources/lang/lt-LT/account/general.php b/resources/lang/lt-LT/account/general.php index 4c1b82956..6ec3ef800 100644 --- a/resources/lang/lt-LT/account/general.php +++ b/resources/lang/lt-LT/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Asmeniniai API raktai', - 'api_key_warning' => 'Generuodami API prieigos raktą būtinai nedelsdami nukopijuokite jį, nes jis - nebebus daugiau matomas.', - 'api_base_url' => 'Jūsų API nuoroda yra:', + 'api_key_warning' => 'Generuodami API prieigos raktą būtinai jį išsisaugokite, nes vėliau jis nebebus matomas.', + 'api_base_url' => 'Jūsų API bazinė nuoroda yra:', 'api_base_url_endpoint' => '/<endpoint>', - 'api_token_expiration_time' => 'API tokenai nustos galioti:', - 'api_reference' => 'Prašau patikrinti API nuorodą, kad - rasti API galinius taškus ir papildomą API dokumentaciją.', - 'profile_updated' => 'Account successfully updated', + 'api_token_expiration_time' => 'API prieigos raktai nustos galioti:', + 'api_reference' => 'Peržiūrėkite API informaciją, kad rastumėte konkrečius API galinius taškus ir papildomą API dokumentaciją.', + 'profile_updated' => 'Paskyra atnaujinta sėkmingai', ); diff --git a/resources/lang/lt-LT/admin/accessories/general.php b/resources/lang/lt-LT/admin/accessories/general.php index 129f755c1..f208fb2c1 100644 --- a/resources/lang/lt-LT/admin/accessories/general.php +++ b/resources/lang/lt-LT/admin/accessories/general.php @@ -7,15 +7,15 @@ return array( 'checkin' => 'Paimti priedą', 'create' => 'Sukurti priedą', 'edit' => 'Redaguoti priedą', - 'eula_text' => 'Kategorijos EULA', - 'eula_text_help' => 'Šis laukas leidžia pritaikyti EULA skirtingoms įrangos grupėms. Jei jūs turite vieną EULA visai įrangai, tuomet galite pažymėti žemiau esantį langelį, kad visuomet būtų naudojama pirminė numatytoji.', + 'eula_text' => 'Kategorijos licencinis sutikimas (EULA)', + 'eula_text_help' => 'Šis laukas leidžia pritaikyti licencinius sutikimus (EULA) skirtingoms įrangos grupėms. Jei jūs turite vieną EULA visai įrangai, tuomet galite pažymėti žemiau esantį langelį, kad visuomet būtų naudojamas pirminis numatytasis.', 'require_acceptance' => 'Reikalauti, kad naudotojai patvirtintų šios kategorijos įrangos gavimą.', - 'no_default_eula' => 'Nerasta pirminė numatytoji EULA. Pridėkite ją nustatymuose.', + 'no_default_eula' => 'Nerastas pirminis numatytasis licencinis sutikimas (EULA). Pridėkite jį nustatymuose.', 'total' => 'Iš viso', 'remaining' => 'Laisva', 'update' => 'Redaguoti priedą', - 'use_default_eula' => 'Vietoj to naudokite pirminę numatytąją EULA .', - 'use_default_eula_disabled' => 'Naudokite pirminę numatytąją EULA. Pirminė numatytoji EULA neparinkta. Pridėkite ją nustatymuose.', + 'use_default_eula' => 'Vietoj to naudokite pirminį numatytąjį licencinį sutikimą (EULA).', + 'use_default_eula_disabled' => 'Naudokite pirminį numatytąjį licencinį sutikimą (EULA). Pirminis numatytasis EULA neparinktas. Pridėkite jį nustatymuose.', 'clone' => 'Klonuoti priedą', 'delete_disabled' => 'Šis priedas negali būti panaikintas, kadangi kai kurie jo elementai vis dar yra išduoti.', diff --git a/resources/lang/lt-LT/admin/accessories/table.php b/resources/lang/lt-LT/admin/accessories/table.php index 196af1896..b301ac256 100644 --- a/resources/lang/lt-LT/admin/accessories/table.php +++ b/resources/lang/lt-LT/admin/accessories/table.php @@ -2,7 +2,7 @@ return array( 'dl_csv' => 'Atsisiųsti CSV', - 'eula_text' => 'EULA', + 'eula_text' => 'Licencinis sutikimas (EULA)', 'id' => 'ID', 'require_acceptance' => 'Sutikimas', 'title' => 'Priedo pavadinimas', diff --git a/resources/lang/lt-LT/admin/categories/general.php b/resources/lang/lt-LT/admin/categories/general.php index 924549fbc..ad58f44a3 100644 --- a/resources/lang/lt-LT/admin/categories/general.php +++ b/resources/lang/lt-LT/admin/categories/general.php @@ -8,18 +8,18 @@ return array( 'clone' => 'Klonuoti kategoriją', 'create' => 'Sukurti kategoriją', 'edit' => 'Redaguoti kategoriją', - 'email_will_be_sent_due_to_global_eula' => 'Naudotojui bus išsiųstas el. laiškas, nes yra naudojama visuotinė EULA.', - 'email_will_be_sent_due_to_category_eula' => 'Naudotojui bus išsiųstas el. laiškas, nes šiai kategorijai nustatyta EULA.', - 'eula_text' => 'Kategorijos EULA', - 'eula_text_help' => 'Šis laukas leidžia pritaikyti EULA atskiroms įrangos grupėms. Jei jūs naudojate vieną EULA visoms įrangos grupėms, tuomet pažymėkite žemiau esantį langelį, kad būtų naudojama pirminė numatytoji EULA.', + 'email_will_be_sent_due_to_global_eula' => 'Naudotojui bus išsiųstas el. laiškas, nes yra naudojamas visuotinis licencinis sutikimas (EULA).', + 'email_will_be_sent_due_to_category_eula' => 'Naudotojui bus išsiųstas el. laiškas, nes šiai kategorijai nustatytas licencinis sutikimas (EULA).', + 'eula_text' => 'Kategorijos licencinis sutikimas (EULA)', + 'eula_text_help' => 'Šis laukas leidžia pritaikyti licencinį sutikimą (EULA) atskiroms įrangos grupėms. Jei jūs naudojate vieną EULA visoms įrangos grupėms, tuomet pažymėkite žemiau esantį langelį, kad būtų naudojamas pirminis numatytasis EULA.', 'name' => 'Kategorijos pavadinimas', 'require_acceptance' => 'Reikalauti, kad naudotojai patvirtintų šios kategorijos įrangos gavimą.', 'required_acceptance' => 'Šiam naudotojui bus išsiųstas el. laiškas su nuoroda šio elemento gavimo patvirtinimui.', - 'required_eula' => 'Šiam naudotojui bus išsiųsta EULA kopija', - 'no_default_eula' => 'Nerasta pirminė numatytoji EULA. Pridėkite ją nustatymuose.', + 'required_eula' => 'Šiam naudotojui bus išsiųsta licencinio sutikimo (EULA) kopija', + 'no_default_eula' => 'Nerastas pirminis numatytasis licencinis sutikimas (EULA). Pridėkite jį nustatymuose.', 'update' => 'Atnaujinti kategoriją', - 'use_default_eula' => 'Naudoti pirminę numatytąją EULA.', - 'use_default_eula_disabled' => 'Naudoti pirminę numatytąją EULA Nėra pirminės numatytosios EULA. Pridėkite ją nustatymuose.', - 'use_default_eula_column' => 'Naudoti numatytąją EULA', + 'use_default_eula' => 'Naudoti pirminį numatytąjį licencinį sutikimą (EULA).', + 'use_default_eula_disabled' => 'Naudoti pirminį numatytąjį licencinį sutikimą (EULA). Nėra pirminio numatytojo EULA. Pridėkite jį nustatymuose.', + 'use_default_eula_column' => 'Naudoti numatytąjį licencinį sutikimą (EULA)', ); diff --git a/resources/lang/lt-LT/admin/categories/table.php b/resources/lang/lt-LT/admin/categories/table.php index 785af8cdd..49b5cd36e 100644 --- a/resources/lang/lt-LT/admin/categories/table.php +++ b/resources/lang/lt-LT/admin/categories/table.php @@ -1,7 +1,7 @@ 'EULA', + 'eula_text' => 'Licencinis sutikimas (EULA)', 'id' => 'ID', 'parent' => 'Pagrindinė', 'require_acceptance' => 'Sutikimas', diff --git a/resources/lang/lt-LT/admin/components/message.php b/resources/lang/lt-LT/admin/components/message.php index d03fa7b01..11125033c 100644 --- a/resources/lang/lt-LT/admin/components/message.php +++ b/resources/lang/lt-LT/admin/components/message.php @@ -15,7 +15,7 @@ return array( ), 'delete' => array( - 'confirm' => 'Ar tikrai norite pannaikinti šį komponentą?', + 'confirm' => 'Ar tikrai norite panaikinti šį komponentą?', 'error' => 'Bandant panaikinti komponentą įvyko klaida. Bandykite dar kartą.', 'success' => 'Komponentas panaikintas sėkmingai.' ), diff --git a/resources/lang/lt-LT/admin/hardware/form.php b/resources/lang/lt-LT/admin/hardware/form.php index fbbe78da4..4c203ecd2 100644 --- a/resources/lang/lt-LT/admin/hardware/form.php +++ b/resources/lang/lt-LT/admin/hardware/form.php @@ -45,7 +45,7 @@ return [ 'select_statustype' => 'Pasirinkite būsenos tipą', 'serial' => 'Serijos numeris', 'status' => 'Būsena', - 'tag' => 'Inventoriaus numeris', + 'tag' => 'Inventorinis numeris', 'update' => 'Įrangos atnaujinimas', 'warranty' => 'Garantija', 'warranty_expires' => 'Garantija baigiasi', diff --git a/resources/lang/lt-LT/admin/hardware/general.php b/resources/lang/lt-LT/admin/hardware/general.php index fdcd7b6db..4502d0223 100644 --- a/resources/lang/lt-LT/admin/hardware/general.php +++ b/resources/lang/lt-LT/admin/hardware/general.php @@ -22,7 +22,7 @@ return [ 'not_requestable' => 'Neužsakoma', 'requestable_status_warning' => 'Nekeisti užsakomos įrangos būsenos', 'restore' => 'Atkurti įrangą', - 'pending' => 'Laukiama', + 'pending' => 'Ruošiama', 'undeployable' => 'Negalimas naudoti', 'undeployable_tooltip' => 'Ši įranga yra pažymėta kaip neišduotina, todėl šiuo metu jos negalima išduoti.', 'view' => 'Peržiūrėti įrangą', diff --git a/resources/lang/lt-LT/admin/hardware/message.php b/resources/lang/lt-LT/admin/hardware/message.php index b4c9f3ab2..9a9398591 100644 --- a/resources/lang/lt-LT/admin/hardware/message.php +++ b/resources/lang/lt-LT/admin/hardware/message.php @@ -4,7 +4,7 @@ return [ 'undeployable' => 'Įspėjimas: Ši įranga pažymėta kaip negalima išduoti. Jei ši būsena pasikeitė, atnaujinkite ją.', 'does_not_exist' => 'Tokios įrangos nėra.', - 'does_not_exist_var'=> 'Įranga su žyma :asset_tag nerasta.', + 'does_not_exist_var'=> 'Įranga su numeriu :asset_tag nerasta.', 'no_tag' => 'Nenurodytas inventorinis numeris.', 'does_not_exist_or_not_requestable' => 'Tokios įrangos nėra arba jos negalima užsakyti.', 'assoc_users' => 'Ši įranga šiuo metu yra išduota naudotojui ir negali būti panaikinta. Pirmiausia paimkite įrangą ir tuomet vėl bandykite panaikinti. ', diff --git a/resources/lang/lt-LT/admin/hardware/table.php b/resources/lang/lt-LT/admin/hardware/table.php index 41e34dad9..320cb80bb 100644 --- a/resources/lang/lt-LT/admin/hardware/table.php +++ b/resources/lang/lt-LT/admin/hardware/table.php @@ -2,7 +2,7 @@ return [ - 'asset_tag' => 'Inventoriaus numeris', + 'asset_tag' => 'Inventorinis numeris', 'asset_model' => 'Modelis', 'assigned_to' => 'Išduota', 'book_value' => 'Dabartinė reikšmė', diff --git a/resources/lang/lt-LT/admin/locations/message.php b/resources/lang/lt-LT/admin/locations/message.php index ea6cadc76..c08c37004 100644 --- a/resources/lang/lt-LT/admin/locations/message.php +++ b/resources/lang/lt-LT/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Tokios vietos nėra.', - 'assoc_users' => 'Ši vieta šiuo metu yra susieta bent su vienu naudotoju ir negali būti panaikinta. Atnaujinkite savo naudotojus, kad nebebūtų sąsajos su šia vieta, ir bandykite dar kartą. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Ši vieta šiuo metu yra susieta bent su viena įranga ir negali būti panaikinta. Atnaujinkite savo įrangą, kad nebebūtų sąsajos su šia vieta, ir bandykite dar kartą. ', 'assoc_child_loc' => 'Ši vieta šiuo metu yra kaip pagrindinė bent vienai žemesnio lygio vietai ir negali būti panaikinta. Atnaujinkite savo žemesnio lygio vietas, kad nebebūtų sąsajos su šia vieta, ir bandykite dar kartą. ', 'assigned_assets' => 'Priskirta įranga', diff --git a/resources/lang/lt-LT/admin/locations/table.php b/resources/lang/lt-LT/admin/locations/table.php index 0f25da781..0fde6df77 100644 --- a/resources/lang/lt-LT/admin/locations/table.php +++ b/resources/lang/lt-LT/admin/locations/table.php @@ -24,7 +24,7 @@ return [ 'user_name' => 'Naudotojo vardas', 'department' => 'Skyrius', 'location' => 'Vieta', - 'asset_tag' => 'Inventoriaus numeris', + 'asset_tag' => 'Inventorinis numeris', 'asset_name' => 'Pavadinimas', 'asset_category' => 'Kategorija', 'asset_manufacturer' => 'Gamintojas', diff --git a/resources/lang/lt-LT/admin/manufacturers/message.php b/resources/lang/lt-LT/admin/manufacturers/message.php index 69c1a4423..c4e026dc7 100644 --- a/resources/lang/lt-LT/admin/manufacturers/message.php +++ b/resources/lang/lt-LT/admin/manufacturers/message.php @@ -24,7 +24,7 @@ return array( 'delete' => array( 'confirm' => 'Ar jūs tikrai norite panaikinti šį gamintoją?', 'error' => 'Bandant panaikinti gamintoją įvyko klaida. Bandykite dar kartą.', - 'success' => 'Gamintojas sėkmingai ištrintas.' + 'success' => 'Gamintojas panaikintas sėkmingai.' ) ); diff --git a/resources/lang/lt-LT/admin/models/general.php b/resources/lang/lt-LT/admin/models/general.php index 12e3fe26d..2ca1e8d9b 100644 --- a/resources/lang/lt-LT/admin/models/general.php +++ b/resources/lang/lt-LT/admin/models/general.php @@ -1,18 +1,18 @@ 'Apie turto modelius', - 'about_models_text' => 'Turto modeliai yra būdas grupuoti identišką turtą. "MBP 2013", "IPhone 6s" ir kt.', - 'deleted' => 'This model has been deleted.', - 'bulk_delete' => 'Ištrinti pažymėtus turto modelius', - 'bulk_delete_help' => '„Pažymėkite žemiau esantį langelį, kad patvirtintumėte pasirinktų turto modelių ištrynimą. Turto modeliai, kuriuose yra su jais susijęs turtas, negali būti ištrinti, išskyrus tuos atvejus, kai tas turtas yra susietas su kitu modeliu.“.', - 'bulk_delete_warn' => 'You are about to delete one asset model.|You are about to delete :model_count asset models.', + 'about_models_title' => 'Apie įrangos modelius', + 'about_models_text' => 'Įrangos modeliai yra būdas grupuoti identišką įrangą. („MBP 2013“, „IPhone 6s“ ir kt.)', + 'deleted' => 'Šis modelis buvo panaikintas.', + 'bulk_delete' => 'Panaikinti kelis modelius', + 'bulk_delete_help' => 'Naudokite žemiau esančius žymimuosius laukelius, kad patvirtintumėte pasirinktų įrangos modelių panaikinimą. Įrangos modelių, su kuriais yra susieta įranga, negalima ištrinti tol, kol ši įranga nebus susieti su kitu modeliu.', + 'bulk_delete_warn' => 'Ketinate panaikinti vieną įrangos modelį.|Ketinate panaikinti :model_count įrangos modelius.', 'restore' => 'Atkurti modelį', - 'requestable' => 'Naudotojai gali užklausi šį modelį', - 'show_mac_address' => 'Rodykite MAC adreso laukelį įrangoje šiam modeliui', - 'view_deleted' => 'Peržiūrėti ištrintus', + 'requestable' => 'Naudotojai gali užsakyti šį modelį', + 'show_mac_address' => 'Rodyti MAC adreso lauką šio modelio įrangai', + 'view_deleted' => 'Peržiūrėti panaikintus', 'view_models' => 'Peržiūrėti modelius', - 'fieldset' => 'Laukų grupė', + 'fieldset' => 'Laukų rinkinys', 'no_custom_field' => 'Nėra pritaikytų laukų', - 'add_default_values' => 'Pridėti numatytąją reikšmę', + 'add_default_values' => 'Pridėti numatytąsias reikšmes', ); diff --git a/resources/lang/lt-LT/admin/models/message.php b/resources/lang/lt-LT/admin/models/message.php index 89ae334ce..188724cdf 100644 --- a/resources/lang/lt-LT/admin/models/message.php +++ b/resources/lang/lt-LT/admin/models/message.php @@ -2,46 +2,46 @@ return array( - 'deleted' => 'Deleted asset model', + 'deleted' => 'Panaikintas įrangos modelis', 'does_not_exist' => 'Tokio modelio nėra.', - 'no_association' => 'WARNING! The asset model for this item is invalid or missing!', - 'no_association_fix' => 'This will break things in weird and horrible ways. Edit this asset now to assign it a model.', - 'assoc_users' => 'Šis modelis šiuo metu susietas su daugiau nei vienu įrangos vientu ir negali būti ištrintas. Prašome ištrinkite įrangą ir tuomet bandykite trinti iš naujo. ', + 'no_association' => 'ĮSPĖJIMAS! Tokio įrangos modelio nėra arba jis netinkamas!', + 'no_association_fix' => 'Tai sugadins dalykus keistais ir siaubingais būdais. Nedelsdami redaguokite šią įrangą ir priskirkite jai modelį.', + 'assoc_users' => 'Šis modelis šiuo metu susietas su bent vienu įrangos vienetu, todėl negali būti panaikintas. Panaikinkite šią įrangą, tuomet vėl bandykite panaikinti modelį. ', 'create' => array( - 'error' => 'Modelis nebuvo ištrintas, prašome bandykite iš naujo.', - 'success' => 'Modelis sėkmingai sukurtas.', - 'duplicate_set' => 'Įrangos modelis su šiuo pavadinimu, gamintoju ir modeliu numeriu jau yra.', + 'error' => 'Modelis nebuvo panaikintas, bandykite dar kartą.', + 'success' => 'Modelis sukurtas sėkmingai.', + 'duplicate_set' => 'Įrangos modelis su tokiu pavadinimu, gamintoju ir modelio numeriu jau yra.', ), 'update' => array( - 'error' => 'Modelis nebuvo atnaujintas, prašome bandykite iš naujo', - 'success' => 'Modelis sėkmingai atnaujintas.', + 'error' => 'Modelis nebuvo atnaujintas, bandykite dar kartą', + 'success' => 'Modelis atnaujintas sėkmingai.', ), 'delete' => array( - 'confirm' => 'Ar jūs tikrai norite ištrinti šios įrangos modelį?', - 'error' => 'Nepavyko ištrinti modelio. Prašome bandykite dar kartą.', - 'success' => 'Modelis sėkmingai ištrintas.' + 'confirm' => 'Ar tikrai norite panaikinti šį įrangos modelį?', + 'error' => 'Bandant panaikinti modelį įvyko klaida. Bandykite dar kartą.', + 'success' => 'Modelis panaikintas sėkmingai.' ), 'restore' => array( - 'error' => 'Modelis nebuvo atkurtas, prašome bandykite dar kartą', - 'success' => 'Modelis sėkmingai atkurtas.' + 'error' => 'Modelis nebuvo atkurtas, bandykite dar kartą', + 'success' => 'Modelis atkurtas sėkmingai.' ), 'bulkedit' => array( - 'error' => 'Nebuvo pakeista jokių laukų, todėl niekas nebuvo atnaujintas.', - 'success' => 'Model successfully updated. |:model_count models successfully updated.', - 'warn' => 'You are about to update the properties of the following model:|You are about to edit the properties of the following :model_count models:', + 'error' => 'Jokie laukai nebuvo pakeisti, todėl niekas nebuvo atnaujinta.', + 'success' => 'Modelis atnaujintas sėkmingai. |:model_count modeliai atnaujinti sėkmingai.', + 'warn' => 'Ketinate atnaujinti šio modelio ypatybes:|Ketinate redaguoti šių :model_count modelių ypatybes:', ), 'bulkdelete' => array( - 'error' => 'Nepasirinktas modelis, nėra ką ištrinti.', - 'success' => 'Model deleted!|:success_count models deleted!', - 'success_partial' => ':success_count model(s) buvo ištrinti, bet :fail_count negalima ištrinti todėl, kad turtas vis dar susietas.' + 'error' => 'Nebuvo pasirinktas joks modelis, todėl niekas nebuvo panaikinta.', + 'success' => 'Modelis panaikintas!|:success_count modeliai panaikinti!', + 'success_partial' => 'Panaikinti modeliai – :success_count, tačiau dar :fail_count nepavyko panaikinti, nes vis dar yra su jais susietos įrangos.' ), ); diff --git a/resources/lang/lt-LT/admin/models/table.php b/resources/lang/lt-LT/admin/models/table.php index d763d6542..696a2c1fd 100644 --- a/resources/lang/lt-LT/admin/models/table.php +++ b/resources/lang/lt-LT/admin/models/table.php @@ -12,6 +12,6 @@ return array( 'update' => 'Atnaujinti įrangos modelį', 'view' => 'Peržiūrėti įrangos modelį', 'update' => 'Atnaujinti įrangos modelį', - 'clone' => 'Kopijuoti modelį', - 'edit' => 'Taisyti modelį', + 'clone' => 'Klonuoti modelį', + 'edit' => 'Redaguoti modelį', ); diff --git a/resources/lang/lt-LT/admin/reports/general.php b/resources/lang/lt-LT/admin/reports/general.php index f249bc95b..62e2a81aa 100644 --- a/resources/lang/lt-LT/admin/reports/general.php +++ b/resources/lang/lt-LT/admin/reports/general.php @@ -1,17 +1,17 @@ 'Pasirinkite dalis, kurias norite matyti savo įrangos ataskaitoje.', - 'deleted_user' => 'Deleted user', + 'info' => 'Pasirinkite tai, ką norite matyti savo įrangos ataskaitoje.', + 'deleted_user' => 'Panaikintas naudotojas', 'send_reminder' => 'Siųsti priminimą', 'reminder_sent' => 'Priminimas išsiųstas', - 'acceptance_deleted' => 'Acceptance request deleted', - 'acceptance_request' => 'Acceptance request', + 'acceptance_deleted' => 'Sutikimo užklausa panaikinta', + 'acceptance_request' => 'Sutikimo užklausa', 'custom_export' => [ - 'user_address' => 'User Address', - 'user_city' => 'User City', - 'user_state' => 'User State', - 'user_country' => 'User Country', - 'user_zip' => 'User Zip' + 'user_address' => 'Naudotojo adresas', + 'user_city' => 'Naudotojo miestas', + 'user_state' => 'Naudotojo rajonas', + 'user_country' => 'Naudotojo šalis', + 'user_zip' => 'Naudotojo pašto kodas' ] ]; \ No newline at end of file diff --git a/resources/lang/lt-LT/admin/settings/general.php b/resources/lang/lt-LT/admin/settings/general.php index 6a09a3a81..4e80a21fd 100644 --- a/resources/lang/lt-LT/admin/settings/general.php +++ b/resources/lang/lt-LT/admin/settings/general.php @@ -2,367 +2,377 @@ return [ 'ad' => 'Active Directory', - 'ad_domain' => '"Active Directory" domenas', - 'ad_domain_help' => 'Tai kartais sutampa su jūsų el. Pašto domenu, bet ne visada.', - 'ad_append_domain_label' => 'Append domain name', - 'ad_append_domain' => 'Append domain name to username field', - 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', - 'admin_cc_email' => 'CC El. paštas', - 'admin_cc_email_help' => 'Jeigu Jūs norite siųsti išduoto/neišduoto turto sąrašo kopiją, įveskite čia el. pašto adresą. Kitu atveju palikite laukelį tuščią.', - 'admin_settings' => 'Admin Settings', - 'is_ad' => 'Tai yra "Active Directory" serveris', - 'alerts' => 'Įspėjimas', - 'alert_title' => 'Update Notification Settings', - 'alert_email' => 'Siūsti įspėjimus', - 'alert_email_help' => 'Email addresses or distribution lists you want alerts to be sent to, comma separated', - 'alerts_enabled' => 'Perspėjimai įjungti', - 'alert_interval' => 'Galiojanti įspėjimų slenkstis (dienomis)', - 'alert_inv_threshold' => 'Inventoriaus įspėjimo slenkstis', - 'allow_user_skin' => 'Allow User Skin', - 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', + 'ad_domain' => 'Active Directory domenas', + 'ad_domain_help' => 'Kartais tai sutampa su jūsų el. pašto domenu, bet ne visada.', + 'ad_append_domain_label' => 'Pridėti domeno pavadinimą', + 'ad_append_domain' => 'Pridėti domeno pavadinimą prie naudotojo vardo lauko', + 'ad_append_domain_help' => 'Naudotojas neprivalo įvesti „naudotojovardas@domain.local“, jis gali tiesiog įvesti „naudotojovardas“.', + 'admin_cc_email' => 'El. paštas kopijai', + 'admin_cc_email_help' => 'Jei norite siųsti naudotojams siunčiamų išdavimo/paėmimo el. laiškų kopijas į papildomą el. pašto adresą, įveskite jį čia. Kitu atveju palikite šį lauką tuščią.', + 'admin_settings' => 'Administratoriaus nustatymai', + 'is_ad' => 'Tai yra Active Directory serveris', + 'alerts' => 'Įspėjimai', + 'alert_title' => 'Atnaujinti pranešimų nustatymus', + 'alert_email' => 'Siųsti įspėjimus į', + 'alert_email_help' => 'El. pašto adresai arba platinimo sąrašai, kuriems norite siųsti įspėjimus, atskirti kableliais', + 'alerts_enabled' => 'Įspėjimai įjungti', + 'alert_interval' => 'Įspėjimų apie garantijos pabaigą slenkstis (dienomis)', + 'alert_inv_threshold' => 'Įspėjimo apie atsargas slenkstis (vienetais)', + 'allow_user_skin' => 'Įgalinti naudotojo temas', + 'allow_user_skin_help_text' => 'Pažymėjus šį langelį, naudotojas galės pasikeisti numatytąją sąsajos temą kita.', 'asset_ids' => 'Įrangos ID', 'audit_interval' => 'Audito intervalas', - 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date will be updated.', - 'audit_warning_days' => 'Audito įspėjimo slenkstis', - 'audit_warning_days_help' => 'Kiek dienų iš anksto turėtume įspėti, kada turėtume atlikti auditą?', - 'auto_increment_assets' => 'Generate auto-incrementing asset tags', - 'auto_increment_prefix' => 'Papilomas priedėlis (pasirinktinai)', - 'auto_incrementing_help' => 'Enable auto-incrementing asset tags first to set this', + 'audit_interval_help' => 'Jei jums reikia reguliariai fiziškai tikrinti savo įrangą, nurodykite naudojamą intervalą mėnesiais. Atnaujinus šią reikšmę, bus atnaujintos visos „kito audito datos“ tai įrangai, kuriai yra nurodyta būsimo audito data.', + 'audit_warning_days' => 'Išankstinis įspėjimas apie auditą', + 'audit_warning_days_help' => 'Prieš kiek dienų turėtume jus įspėti, kai turi būti atliktas įrangos auditas?', + 'auto_increment_assets' => 'Generuoti automatiškai didėjančius inventorinius numerius', + 'auto_increment_prefix' => 'Prefiksas (pasirinktinai)', + 'auto_incrementing_help' => 'Norėdami tai nustatyti, pirmiausia įjunkite automatiškai didėjančius inventorinius numerius', 'backups' => 'Atsarginė kopija', - 'backups_help' => 'Create, download, and restore backups ', - 'backups_restoring' => 'Restoring from Backup', - 'backups_upload' => 'Upload Backup', - 'backups_path' => 'Backups on the server are stored in :path', - 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.)

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', - 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', - 'barcode_settings' => 'Prekės kodo nustatymai', - 'confirm_purge' => 'Patvirtinkite švarą', - 'confirm_purge_help' => 'Enter the text "DELETE" in the box below to purge your deleted records. This action cannot be undone and will PERMANENTLY delete all soft-deleted items and users. (You should make a backup first, just to be safe.)', - 'custom_css' => 'Užsakytas CSS', - 'custom_css_help' => 'Įveskite bet kokį užsakytą CSS peržiūrėjimo norėtumėte naudoti. Neįtraukite <style></Stilius> žymės.', - 'custom_forgot_pass_url' => 'Pasirinktinio slaptažodžio atkūrimo nuoroda', - 'custom_forgot_pass_url_help' => 'Tai pakeičia pamiršto slaptažodžio nuorodą prisijungimo lange. Naudinga tiesiogiai nukreipti į LDAP slaptažodžio atkūrimo funkcionalumą. Būtų efektyviau išjungti vietinių vartotojų pamirštų slaptažodžių funkcionalumą.', - 'dashboard_message' => 'Prietaisų skydelio pranešimai', - 'dashboard_message_help' => 'Šis tekstas bus rodomas valdymo skydelyje, kiekvienam turinčiam teisę peržiūrėti valdymo skydelį.', + 'backups_help' => 'Kurti, atsisiųsti ir atkurti atsargines kopijas ', + 'backups_restoring' => 'Atkurti iš atsarginės kopijos', + 'backups_upload' => 'Įkelti atsarginę kopiją', + 'backups_path' => 'Atsarginės kopijos serveryje saugomos :path', + 'backups_restore_warning' => 'Naudokite atkūrimo mygtuką , jei norite atkurti iš ankstesnės atsarginės kopijos. (Šiuo metu tai neveikia naudojant S3 failų saugyklą arba „Docker“.)

Jūsų visa :app_name duomenų bazė ir visi įkelti failai bus visiškai pakeisti tuo, kas yra atsarginės kopijos faile. ', + 'backups_logged_out' => 'Kai atkūrimas bus baigtas, visi esami naudotojai, įskaitant jus, bus atjungti.', + 'backups_large' => 'Atkuriant labai dideles atsargines kopijas, gali pasibaigti tam skirtas laikas, todėl vis tiek gali tekti atkūrimui naudoti komandinę eilutę. ', + 'barcode_settings' => 'Brūkšninio kodo nustatymai', + 'confirm_purge' => 'Patvirtinkite išvalymą', + 'confirm_purge_help' => 'Įveskite tekstą „DELETE“ į žemiau esantį lauką, kad išvalytumėte panaikintus įrašus. Šio veiksmo anuliuoti negalima, o visi programiškai panaikinti elementai ir naudotojai bus NEGRĮŽTAMAI ištrinti. (Pirmiausia turėtumėte sukurti atsarginę kopiją, kad būtumėte saugūs.)', + 'custom_css' => 'Pritaikytas CSS', + 'custom_css_help' => 'Įveskite bet kokius individualius CSS pakeitimus, kuriuos norite naudoti. Neįtraukite <style></style> žymų.', + 'custom_forgot_pass_url' => 'Tinkinta slaptažodžio nustatymo iš naujo nuoroda', + 'custom_forgot_pass_url_help' => 'Tai pakeičia integruotą pamiršto slaptažodžio nuorodą prisijungimo ekrane, naudinga norint nukreipti žmones į vidinę arba priglobtą LDAP slaptažodžio nustatymo iš naujo funkciją. Tai visiškai išjungs vietinio naudotojo pamiršto slaptažodžio nustatymo iš naujo funkciją.', + 'dashboard_message' => 'Valdymo skydo pranešimas', + 'dashboard_message_help' => 'Šis tekstas valdymo skyde bus rodomas visiems, turintiems teisę matyti valdymo skydą.', 'default_currency' => 'Numatytoji valiuta', - 'default_eula_text' => 'Numatytasis EULA', - 'default_language' => 'Numatyta kalba', - 'default_eula_help_text' => 'Jūs taip pat galite susieti pritaikytą EULĄ specifinėms įrangos grupėms.', - 'acceptance_note' => 'Add a note for your decision (Optional)', + 'default_eula_text' => 'Numatytasis licencinis sutikimas (EULA)', + 'default_language' => 'Numatytoji kalba', + 'default_eula_help_text' => 'Taip pat galite susieti tinkintus licencinius sutikimus (EULA) su konkrečiomis įrangos grupėmis.', + 'acceptance_note' => 'Pridėkite pastabą prie savo sprendimo (nebūtina)', 'display_asset_name' => 'Rodyti įrangos pavadinimą', 'display_checkout_date' => 'Rodyti išdavimo datą', - 'display_eol' => 'Rodyti įrangos naudojimo pabaigos datas lentelės pavidalu', - 'display_qr' => 'Rodyti QR kodus', - 'display_alt_barcode' => 'Rodyti 1D barkodus', - 'email_logo' => 'Email Logo', - 'barcode_type' => '2D barkodo tipas', - 'alt_barcode_type' => '1D barkodo tipas', - 'email_logo_size' => 'Square logos in email look best. ', + 'display_eol' => 'Rodyti įrangos nurašymo datas lentelės rodinyje', + 'display_qr' => 'Rodyti kvadratinius kodus', + 'display_alt_barcode' => 'Rodyti 1D brūkšninius kodus', + 'email_logo' => 'El. pašto logotipas', + 'barcode_type' => '2D brūkšninio kodo tipas', + 'alt_barcode_type' => '1D brūkšninio kodo tipas', + 'email_logo_size' => 'Kvadratiniai logotipai laiškuose atrodo geriausiai. ', 'enabled' => 'Įjungta', - 'eula_settings' => 'EULA nustatymai', - 'eula_markdown' => 'Šis EULA leidžia Github flavored markdown.', - 'favicon' => 'Favicon', - 'favicon_format' => 'Accepted filetypes are ico, png, and gif. Other image formats may not work in all browsers.', - 'favicon_size' => 'Favicons should be square images, 16x16 pixels.', + 'eula_settings' => 'Licencinio sutikimo (EULA) nustatymai', + 'eula_markdown' => 'Šis licencinis sutikimas (EULA) leidžia naudoti Github tipo žymėjimą (markdown).', + 'favicon' => 'Puslapio ikonėlė (Favicon)', + 'favicon_format' => 'Priimtini failų tipai yra ico, png ir gif. Kiti vaizdo formatai gali veikti ne visose naršyklėse.', + 'favicon_size' => 'Puslapio ikonėlės (Favicons) turėtų būti kvadratiniai atvaizdai, 16 x 16 pikselių dydžio.', 'footer_text' => 'Papildomas poraštė tekstas ', - 'footer_text_help' => 'Šis tekstas bus rodomas dešinėje poraštės pusėje. Nuorodos leidžiamos naudojant Github flavored markdown. Eilutės lūžei, antraštės, paveiksliukai etc gali sukelti nenuspėjamus rezultatus.', + 'footer_text_help' => 'Šis tekstas bus rodomas dešinėje poraštės pusėje. Nuorodos leidžiamos naudojant Github tipo žymėjimą (markdown). Eilučių lūžiai, antraštės, atvaizdai ir kt. gali sukelti nenuspėjamus rezultatus.', 'general_settings' => 'Bendrieji nustatymai', - 'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy', - 'general_settings_help' => 'Default EULA and more', - 'generate_backup' => 'Atsarginė kopija', + 'general_settings_keywords' => 'įmonės palaikymas, parašas, sutikimas, el. laiško formatas, naudotojo vardo formatas, atvaizdai, viename puslapyje, miniatiūra, eula, gravatar, paslaugos sąlygos, valdymo skydas, privatumas', + 'general_settings_help' => 'Numatytasis licencinis sutikimas (EULA) ir kita', + 'generate_backup' => 'Kurti atsarginę kopiją', 'google_workspaces' => 'Google Workspaces', 'header_color' => 'Atraštės spalva', - 'info' => 'Šie nustatymai leidžia jums pasirinkti savus diegimo nustatymus.', - 'label_logo' => 'Label Logo', - 'label_logo_size' => 'Square logos look best - will be displayed in the top right of each asset label. ', + 'info' => 'Šie nustatymai leidžia tinkinti tam tikrus diegimo aspektus.', + 'label_logo' => 'Etiketės logotipas', + 'label_logo_size' => 'Kvadratiniai logotipai atrodo geriausiai – bus rodomi kiekvienos įrangos etiketės viršuje, dešinėje. ', 'laravel' => 'Laravel versija', 'ldap' => 'LDAP', - 'ldap_default_group' => 'Default Permissions Group', - 'ldap_default_group_info' => 'Select a group to assign to newly synced users. Remember that a user takes on the permissions of the group they are assigned.', - 'no_default_group' => 'No Default Group', + 'ldap_default_group' => 'Numatytoji teisių grupė', + 'ldap_default_group_info' => 'Pasirinkite grupę, kurią norite priskirti naujai sinchronizuotiems naudotojams. Atminkite, kad naudotojas įgauna jam priskirtos grupės teises.', + 'no_default_group' => 'Nėra numatytosios grupės', 'ldap_help' => 'LDAP/Active Directory', - 'ldap_client_tls_key' => 'LDAP Client TLS Key', - 'ldap_client_tls_cert' => 'LDAP Client-Side TLS Certificate', + 'ldap_client_tls_key' => 'LDAP kliento TLS raktas', + 'ldap_client_tls_cert' => 'LDAP kliento pusės TLS sertifikatas', 'ldap_enabled' => 'LDAP įjungtas', 'ldap_integration' => 'LDAP integracija', 'ldap_settings' => 'LDAP nustatymai', - 'ldap_client_tls_cert_help' => 'Client-Side TLS Certificate and Key for LDAP connections are usually only useful in Google Workspace configurations with "Secure LDAP." Both are required.', - 'ldap_location' => 'LDAP prisijungimas', -'ldap_location_help' => 'The Ldap Location field should be used if an OU is not being used in the Base Bind DN. Leave this blank if an OU search is being used.', - 'ldap_login_test_help' => 'Prašome įvesti tinkamą LDAP vartotojo vardą ir slaptažodį iš bazės DN. Jūs privalote patikrinti ar LDAP prisijungimas sukonfigūruotas tinkamai. PIRMIAUSIA JŪS PRIVALOTE IŠSAUGOTI LDAP NUSTATYMUS.', - 'ldap_login_sync_help' => 'Tai patikrina ar LDAP sinchronizacija teisinga. Jeigu Jūsų LADAP autentifikacijos užkalusa nėra teisinga, vartotojai gali negalėti prisijungti. PIRMIAUSIA JŪS PRIVALOTE IŠSAUGOTI LDAP NUSTATYMUS.', + 'ldap_client_tls_cert_help' => 'Kliento pusės TLS sertifikatas ir raktas LDAP ryšiams, paprastai, naudingi tik naudojant „Google Workspace“ konfigūracijas su „Saugiu LDAP“. Abu yra reikalingi.', + 'ldap_location' => 'LDAP vieta', +'ldap_location_help' => 'Lauką „Ldap vieta“ reikia naudoti, jei OU paieška nėra atliekama pagrindiniame susiejimo DN (Base Bind DN). Palikite šį lauką tuščią, jei naudojate OU paiešką.', + 'ldap_login_test_help' => 'Įveskite galiojantį LDAP naudotojo vardą ir slaptažodį iš pagrindinio DN, kurį nurodėte anksčiau, kad patikrintumėte, ar jūsų LDAP prisijungimas sukonfigūruotas teisingai. PIRMIAUSIA TURITE IŠSAUGOTI ATNAUJINTUS LDAP NUSTATYMUS.', + 'ldap_login_sync_help' => 'Tai tik patikrina ar LDAP sinchronizuoja teisingai. Jei jūsų LDAP autentifikavimo užklausa neteisinga, naudotojai vis tiek negalės prisijungti. PIRMIAUSIA TURITE IŠSAUGOTI ATNAUJINTUS LDAP NUSTATYMUS.', 'ldap_manager' => 'LDAP vadovas', 'ldap_server' => 'LDAP serveris', - 'ldap_server_help' => 'Tai turėtų prasidėti su ldap: // (nešifruotam arba TLS) arba ldaps: (jei tai SSL)', - 'ldap_server_cert' => 'LDAP SSL sertifikato patvirtinimas', - 'ldap_server_cert_ignore' => 'Leisti nepatvirtintą SSL sertifikatą', - 'ldap_server_cert_help' => 'Pažymėkite jeigu naudojate savo pasirašytą SSL sertifikatą ir norite naudoti neegzistuojanti SSL sertifikatą.', - 'ldap_tls' => 'Naudokite TLS', - 'ldap_tls_help' => 'Tai turėtų būti tikrinama, jei jūsų LDAP serveryje naudojate STARTTLS.', - 'ldap_uname' => 'LDAP vartotojo vardas', - 'ldap_dept' => 'LDAP departamentas', - 'ldap_phone' => 'LDAP Telephone Number', - 'ldap_jobtitle' => 'LDAP Job Title', - 'ldap_country' => 'LDAP Country', - 'ldap_pword' => 'LDAP slaptažodis', - 'ldap_basedn' => 'DN', + 'ldap_server_help' => 'Turėtų prasidėti su ldap:// (nešifruotas arba TLS) arba ldaps:// (jei tai SSL)', + 'ldap_server_cert' => 'LDAP SSL sertifikato tikrinimas', + 'ldap_server_cert_ignore' => 'Leisti negaliojantį SSL sertifikatą', + 'ldap_server_cert_help' => 'Pažymėkite šį laukelį, jei naudojate paties pasirašytą SSL sertifikatą ir norite leisti naudoti negaliojantį SSL sertifikatą.', + 'ldap_tls' => 'Naudoti TLS', + 'ldap_tls_help' => 'Tai turėtų būti pažymėta tik tada, jei savo LDAP serveryje naudojate STARTTLS. ', + 'ldap_uname' => 'LDAP susiejimo naudotojo vardas', + 'ldap_dept' => 'LDAP Skyrius', + 'ldap_phone' => 'LDAP Telefono Nr.', + 'ldap_jobtitle' => 'LDAP Pareigos', + 'ldap_country' => 'LDAP Šalis', + 'ldap_pword' => 'LDAP susiejimo slaptažodis', + 'ldap_basedn' => 'Base Bind DN', 'ldap_filter' => 'LDAP filtras', 'ldap_pw_sync' => 'LDAP slaptažodžių sinchronizavimas', - 'ldap_pw_sync_help' => 'Išvalykite šį laukelį, jei nenorite, kad LDAP slaptažodžiai būtų sinchronizuojami su vietiniais slaptažodžiais. Išjungus tai reiškia, kad jūsų vartotojai gali nepavykti prisijungti, jei dėl kokios nors priežasties jūsų LDAP serveris nepasiekiamas.', - 'ldap_username_field' => 'Vartotojo vardo laukelis', + 'ldap_pw_sync_help' => 'Atžymėkite šį langelį, jei nenorite, kad LDAP slaptažodžiai būtų sinchronizuojami su vietiniais slaptažodžiais. Tai išjungus, jūsų naudotojams gali nepavykti prisijungti, jei dėl kokios nors priežasties jūsų LDAP serveris būtų nepasiekiamas.', + 'ldap_username_field' => 'Naudotojo vardo laukas', 'ldap_lname_field' => 'Pavardė', - 'ldap_fname_field' => 'LDAP vardas', - 'ldap_auth_filter_query' => 'LDAP prisijungimo užklausa', + 'ldap_fname_field' => 'LDAP Vardas', + 'ldap_auth_filter_query' => 'LDAP autentifikavimo užklausa', 'ldap_version' => 'LDAP versija', - 'ldap_active_flag' => 'LDAP aktyvios vėliavos', - 'ldap_activated_flag_help' => 'This value is used to determine whether a synced user can login to Snipe-IT. It does not affect the ability to check items in or out to them, and should be the attribute name within your AD/LDAP, not the value.

If this field is set to a field name that does not exist in your AD/LDAP, or the value in the AD/LDAP field is set to 0 or false, user login will be disabled. If the value in the AD/LDAP field is set to 1 or true or any other text means the user can log in. When the field is blank in your AD, we respect the userAccountControl attribute, which usually allows non-suspended users to log in.', - 'ldap_emp_num' => 'LDAP darbuotojų skaičius', - 'ldap_email' => 'LDAP el.paštas', - 'ldap_test' => 'Test LDAP', - 'ldap_test_sync' => 'Test LDAP Synchronization', - 'license' => 'Programinės įrangos licenzija', - 'load_remote' => 'Use Gravatar', - 'load_remote_help_text' => 'Uncheck this box if your install cannot load scripts from the outside internet. This will prevent Snipe-IT from trying load images from Gravatar.', - 'login' => 'Login Attempts', - 'login_attempt' => 'Login Attempt', - 'login_ip' => 'IP Address', + 'ldap_active_flag' => 'LDAP Active Flag', + 'ldap_activated_flag_help' => 'Ši reikšmė naudojama norint nustatyti, ar sinchronizuotas naudotojas gali prisijungti prie „Snipe-IT“. Tai neturi įtakos galimybei išduoti arba paimti daiktus iš šių naudotojų ir turėtų būti jūsų AD/LDAP atributo pavadinimas, o ne reikšmė.

Jei lauke nurodytas lauko pavadinimas, kurio nėra jūsų AD/LDAP, arba reikšmė AD/LDAP lauke nustatyta į 0 arba false , naudotojo prisijungimas bus išjungtas. Jei reikšmė AD/LDAP lauke nustatyta į 1 arba true arba bet kokį kitą tekstą, reiškia, kad naudotojas gali prisijungti. Kai jūsų AD šis laukas yra tuščias, bus paisoma atributo userAccountControl, kuris įprastai leidžia neišjungtiems naudotojams prisijungti.', + 'ldap_emp_num' => 'LDAP Darbuotojo numeris', + 'ldap_email' => 'LDAP El. paštas', + 'ldap_test' => 'Testuoti LDAP', + 'ldap_test_sync' => 'Testuoti LDAP sinchronizavimą', + 'license' => 'Programinės įrangos licencija', + 'load_remote' => 'Naudoti „Gravatar“', + 'load_remote_help_text' => 'Atžymėkite šį langelį, jei jūsų diegimas negali vykdyti skriptų iš interneto. Tai neleis „Snipe-IT“ bandyti įkelti vaizdų iš „Gravatar“.', + 'login' => 'Prisijungimo bandymai', + 'login_attempt' => 'Prisijungimo bandymas', + 'login_ip' => 'IP adresas', 'login_success' => 'Pavyko?', - 'login_user_agent' => 'User Agent', - 'login_help' => 'List of attempted logins', + 'login_user_agent' => 'Naudotojo agentas', + 'login_help' => 'Bandymų prisijungti sąrašas', 'login_note' => 'Prisijungimo pastaba', - 'login_note_help' => 'Pasirinktinai į savo prisijungimo ekraną įtraukite keletą sakinių, pavyzdžiui, kad padėtumėte žmonėms, kurie rasti pamestą ar pavogtą įrenginį. Šiame lauke pritariama "Github" skonio markdown', - 'login_remote_user_text' => 'Nuotolinio vartotojo prisijungimo parametrai', - 'login_remote_user_enabled_text' => 'Įjungti nuotolinį prisijungimą naudojant vartotojo antraštę', - 'login_remote_user_enabled_help' => 'Ši opcija įjungia autentifikaciją "REMOTE_USER" per "Cammon Gateway" vartotojo sąsają (rfc3875)', + 'login_note_help' => 'Pasirinktinai įtraukite kelis sakinius į prisijungimo ekraną, pavyzdžiui, norėdami padėti žmonėms, radusiems pamestą arba pavogtą įrenginį. Šiame lauke galima naudoti Github tipo žymėjimą (markdown)', + 'login_remote_user_text' => 'Nuotolinio naudotojo prisijungimo parinktys', + 'login_remote_user_enabled_text' => 'Įjungti nuotolinį prisijungimą naudojant „Remote User Header“', + 'login_remote_user_enabled_help' => 'Ši parinktis įgalina autentifikavimą naudojant „REMOTE_USER“ per „Common Gateway Interface (rfc3875)“', 'login_common_disabled_text' => 'Išjungti kitus autentifikacijos mechanizmus', - 'login_common_disabled_help' => 'Ši opcija išjungia kitus autentifikacijos mechanizmus. Šią funkciją įjunkite jeigu esate tikri jog REMOTE_USER prisijungimas veikia', - 'login_remote_user_custom_logout_url_text' => 'Pasirinktinė atsijungimo URL', - 'login_remote_user_custom_logout_url_help' => 'Čia įveskite nuorodą į kurią bus nukreipti vartotojai prisijungę prie Snite-IT. Tai naudinga uždarant vartotojo sesiją.', - 'login_remote_user_header_name_text' => 'Custom user name header', - 'login_remote_user_header_name_help' => 'Use the specified header instead of REMOTE_USER', + 'login_common_disabled_help' => 'Ši parinktis išjungia kitus autentifikacijos mechanizmus. Šią funkciją įjunkite jeigu esate tikri, jog REMOTE_USER prisijungimas veikia', + 'login_remote_user_custom_logout_url_text' => 'Pasirinktinis atsijungimo adresas (URL)', + 'login_remote_user_custom_logout_url_help' => 'Jei čia yra pateiktas adresas, į jį bus nukreipti naudotojai po to, kai atsijungs nuo „Snipe-IT“. Tai naudinga norint tinkamai uždaryti autentifikuotų naudotojų sesijas.', + 'login_remote_user_header_name_text' => 'Tinkinta naudotojo vardo antraštė', + 'login_remote_user_header_name_help' => 'Naudoti nurodytą antraštę, o ne REMOTE_USER', 'logo' => 'Logotipas', - 'logo_print_assets' => 'Naudoti spausdinimui', - 'logo_print_assets_help' => 'Naudoti turto sąrašą spausdinimą ', - 'full_multiple_companies_support_help_text' => 'Apriboti vartotojai (įskaitant administratorius) priskirtus kompanijoms.', - 'full_multiple_companies_support_text' => 'Pilnas kelių kompanijų palaikymas', - 'show_in_model_list' => 'Rodyti išskleidžiame modelyje', + 'logo_print_assets' => 'Naudoti spaudiniuose', + 'logo_print_assets_help' => 'Naudoti ženklinimą spausdinamuose įrangos sąrašuose ', + 'full_multiple_companies_support_help_text' => 'Naudotojams (įskaitant administratorius), susietiems su konkrečia įmone, leisti pasiekti tik tos įmonės įrangą.', + 'full_multiple_companies_support_text' => 'Pilnas kelių įmonių palaikymas', + 'show_in_model_list' => 'Rodyti modelių išskleidžiamuosiuose meniu', 'optional' => 'pasirinktinai', - 'per_page' => 'Rezultatai puslapyje', + 'per_page' => 'Rezultatų puslapyje', 'php' => 'PHP versija', 'php_info' => 'PHP informacija', 'php_overview' => 'PHP', 'php_overview_keywords' => 'phpinfo, system, info', - 'php_overview_help' => 'PHP System info', - 'php_gd_info' => 'Jūs turite įdiegti PHP-GD, kad rodytų QR kodus, tam peržiūrėkite diegimo instrukcijas.', - 'php_gd_warning' => 'PHP vaizdo apdorojimas ir GD papildinys neįdiegtas.', + 'php_overview_help' => 'PHP sistemos informacija', + 'php_gd_info' => 'Turite įdiegti php-gd, kad būtų rodomi QR kodai (žr. diegimo instrukcijas).', + 'php_gd_warning' => 'Neįdiegti „PHP Image Processing“ ir „GD“ papildiniai.', 'pwd_secure_complexity' => 'Slaptažodžio sudėtingumas', - 'pwd_secure_complexity_help' => 'Pasirinkite bet kurį slaptažodžio sudėtingumo taisykles, kurias norite vykdyti.', - 'pwd_secure_complexity_disallow_same_pwd_as_user_fields' => 'Password cannot be the same as first name, last name, email, or username', - 'pwd_secure_complexity_letters' => 'Require at least one letter', - 'pwd_secure_complexity_numbers' => 'Require at least one number', - 'pwd_secure_complexity_symbols' => 'Require at least one symbol', - 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', - 'pwd_secure_min' => 'Slaptažodis minimalus simbolių', - 'pwd_secure_min_help' => 'Minimali leistina vertė yra 8', - 'pwd_secure_uncommon' => 'Neleiskite bendrų slaptažodžių', - 'pwd_secure_uncommon_help' => 'Tai neleis vartotojams naudoti bendrų slaptažodžių iš didžiausių 10 000 slaptažodžių, apie kuriuos pranešta pažeidimų metu.', - 'qr_help' => 'Įjungti QR kodus prieš nustatant tai', + 'pwd_secure_complexity_help' => 'Pasirinkite bet kurias slaptažodžio sudėtingumo taisykles, kurias norite taikyti.', + 'pwd_secure_complexity_disallow_same_pwd_as_user_fields' => 'Slaptažodis negali būti toks pat kaip vardas, pavardė, el. pašto adresas ar naudotojo vardas', + 'pwd_secure_complexity_letters' => 'Reikalauti bent vienos raidės', + 'pwd_secure_complexity_numbers' => 'Reikalauti bent vieno skaičiaus', + 'pwd_secure_complexity_symbols' => 'Reikalauti bent vieno simbolio', + 'pwd_secure_complexity_case_diff' => 'Reikalauti bent vienos didžiosios ir vienos mažosios raidės', + 'pwd_secure_min' => 'Mažiausias slaptažodžio simbolių skaičius', + 'pwd_secure_min_help' => 'Mažiausia leistina reikšmė yra 8', + 'pwd_secure_uncommon' => 'Neleisti dažniausiai pasitaikančių slaptažodžių', + 'pwd_secure_uncommon_help' => 'Tai neleis naudotojams naudoti dažniausiai pasitaikančių 10 000 slaptažodžių, paskelbtų duomenų nutekėjimo pranešimuose.', + 'qr_help' => 'Norėdami tai nustatyti, pirmiausia įjunkite QR kodus', 'qr_text' => 'QR kodo tekstas', 'saml' => 'SAML', - 'saml_title' => 'Update SAML settings', + 'saml_title' => 'Atnaujinti SAML nustatymus', 'saml_help' => 'SAML nustatymai', - 'saml_enabled' => 'SAML enabled', - 'saml_integration' => 'SAML Integration', + 'saml_enabled' => 'SAML įjungta', + 'saml_integration' => 'SAML integracija', 'saml_sp_entityid' => 'Entity ID', 'saml_sp_acs_url' => 'Assertion Consumer Service (ACS) URL', 'saml_sp_sls_url' => 'Single Logout Service (SLS) URL', - 'saml_sp_x509cert' => 'Public Certificate', + 'saml_sp_x509cert' => 'Viešasis sertifikatas', 'saml_sp_metadata_url' => 'Metadata URL', 'saml_idp_metadata' => 'SAML IdP Metadata', - 'saml_idp_metadata_help' => 'You can specify the IdP metadata using a URL or XML file.', - 'saml_attr_mapping_username' => 'Attribute Mapping - Username', - 'saml_attr_mapping_username_help' => 'NameID will be used if attribute mapping is unspecified or invalid.', - 'saml_forcelogin_label' => 'SAML Force Login', - 'saml_forcelogin' => 'Make SAML the primary login', - 'saml_forcelogin_help' => 'You can use \'/login?nosaml\' to get to the normal login page.', + 'saml_idp_metadata_help' => 'Galite nurodyti IdP metaduomenis naudodami URL arba XML failą.', + 'saml_attr_mapping_username' => 'Atributų susiejimas – Username', + 'saml_attr_mapping_username_help' => 'NameID bus naudojamas, jei atributo susiejimas nenurodytas arba neteisingas.', + 'saml_forcelogin_label' => 'SAML privalomas naudojimas', + 'saml_forcelogin' => 'Padarykite SAML pagrindiniu prisijungimo būdu', + 'saml_forcelogin_help' => 'Galite naudoti „/login?nosaml“, kad patektumėte į įprastą prisijungimo puslapį.', 'saml_slo_label' => 'SAML Single Log Out', - 'saml_slo' => 'Send a LogoutRequest to IdP on Logout', - 'saml_slo_help' => 'This will cause the user to be first redirected to the IdP on logout. Leave unchecked if the IdP doesn\'t correctly support SP-initiated SAML SLO.', - 'saml_custom_settings' => 'SAML Custom Settings', - 'saml_custom_settings_help' => 'You can specify additional settings to the onelogin/php-saml library. Use at your own risk.', - 'saml_download' => 'Download Metadata', - 'setting' => 'Nustatymai', + 'saml_slo' => 'Atsijungiant siųsti LogoutRequest užklausą į IdP', + 'saml_slo_help' => 'Atsijungiant, naudotojas pirmiausia bus nukreiptas į IdP. Palikite nepažymėtą, jei IdP tinkamai nepalaiko SP inicijuoto SAML SLO.', + 'saml_custom_settings' => 'SAML pasirinktiniai nustatymai', + 'saml_custom_settings_help' => 'Galite nurodyti papildomus onelogin/php-saml bibliotekų nustatymus. Naudokite savo pačių rizika.', + 'saml_download' => 'Atsisiųsti metaduomenis', + 'setting' => 'Nustatymas', 'settings' => 'Nustatymai', 'show_alerts_in_menu' => 'Rodyti įspėjimus viršutiniame meniu', - 'show_archived_in_list' => 'Archyvuotas turtas', - 'show_archived_in_list_text' => 'Rodyti archyvuotą turtą "visame turto" sąraše', - 'show_assigned_assets' => 'Show assets assigned to assets', - 'show_assigned_assets_help' => 'Display assets which were assigned to the other assets in View User -> Assets, View User -> Info -> Print All Assigned and in Account -> View Assigned Assets.', - 'show_images_in_email' => 'Rodyti nuotraukas el. pašte', - 'show_images_in_email_help' => 'Nuimkite žymelę jeigu jūsų Snipe-IT instaliacija yra VPN arba uždarame tinkle ir vartotojai esantys už tinklo negalės įkrauti paveikslėlių jų el. paštuose.', - 'site_name' => 'Interneto puslapio pavadinimas', - 'integrations' => 'Integrations', + 'show_archived_in_list' => 'Archyvuota įranga', + 'show_archived_in_list_text' => 'Rodyti archyvuotą įrangą „visos įrangos“ sąraše', + 'show_assigned_assets' => 'Rodyti įrangą, priskirtą kitai įrangai', + 'show_assigned_assets_help' => 'Rodyti įrangą, kuri buvo priskirta kitai įrangai, skiltyse: „Peržiūrėti naudotoją -> Įranga“, „Peržiūrėti naudotoją -> Informacija -> Spausdinti visą įrangą“ ir „Paskyra -> Peržiūrėti priskirtą įrangą".', + 'show_images_in_email' => 'Rodyti atvaizdus el. laiškuose', + 'show_images_in_email_help' => 'Nuimkite žymelę jeigu jūsų Snipe-IT diegimas yra už VPN arba uždarame tinkle, kitaip tinkle nesantys išorės naudotojai negalės įkelti el. laiškuose pateiktų atvaizdų.', + 'site_name' => 'Puslapio pavadinimas', + 'integrations' => 'Integracijos', 'slack' => 'Slack', - 'general_webhook' => 'General Webhook', + 'general_webhook' => 'Standartinis „Webhook“', 'ms_teams' => 'Microsoft Teams', 'webhook' => ':app', - 'webhook_presave' => 'Test to Save', - 'webhook_title' => 'Update Webhook Settings', - 'webhook_help' => 'Integration settings', + 'webhook_presave' => 'Patikrinti ir išsaugoti', + 'webhook_title' => 'Atnaujinti „Webhook“ nustatymus', + 'webhook_help' => 'Integracijos nustatymai', 'webhook_botname' => ':app Botname', 'webhook_channel' => ':app Channel', 'webhook_endpoint' => ':app Endpoint', - 'webhook_integration' => ':app Settings', - 'webhook_test' =>'Test :app integration', - 'webhook_integration_help' => ':app integration is optional, however the endpoint and channel are required if you wish to use it. To configure :app integration, you must first create an incoming webhook on your :app account. Click on the Test :app Integration button to confirm your settings are correct before saving. ', - 'webhook_integration_help_button' => 'Once you have saved your :app information, a test button will appear.', - 'webhook_test_help' => 'Test whether your :app integration is configured correctly. YOU MUST SAVE YOUR UPDATED :app SETTINGS FIRST.', + 'webhook_integration' => ':app nustatymai', + 'webhook_test' =>'Tikrinti :app integraciją', + 'webhook_integration_help' => ':app integracija nėra privaloma, tačiau, jei norite ją naudoti, būtina nurodyti Endpoint ir Channel. Norėdami sukonfigūruoti :app integraciją, pirmiausia turite sukurti įeinantį „Webhook“ pranešimą savo :app paskyroje. Spustelėkite mygtuką Tikrinti :app integraciją, kad patvirtintumėte ar nustatymai yra teisingi, prieš juos išsaugodami. ', + 'webhook_integration_help_button' => 'Išsaugojus :app informaciją, pasirodys testavimo mygtukas.', + 'webhook_test_help' => 'Patikrinkite, ar jūsų :app integracija sukonfigūruota tinkamai. PIRMA PRIVALOTE IŠSAUGOTI ATNAUJINTUS :app NUSTATYMUS.', 'snipe_version' => 'Snipe-IT versija', - 'support_footer' => 'Palaikomos poraštė nuorodos ', - 'support_footer_help' => 'Nurodykite, kas matys nuorodas į „Snipe-IT“ palaikymo informacijos ir naudotojo vadovą', - 'version_footer' => 'Versija poraštėje ', - 'version_footer_help' => 'Nurodykite kad galės matyti Snipe-IT versijas ir versijos numerius.', + 'support_footer' => 'Palaikymo nuorodos poraštėje ', + 'support_footer_help' => 'Nurodykite, kas mato nuorodas į Snipe-IT palaikymo informaciją ir naudotojo vadovą', + 'version_footer' => 'Versijos rodymas poraštėje ', + 'version_footer_help' => 'Nurodykite, kas mato Snipe-IT versiją ir darinio (build) numerį.', 'system' => 'Sistemos informacija', 'update' => 'Atnaujinti nustatymus', - 'value' => 'Vertė', - 'brand' => 'Prekinis ženklinimas', - 'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css', - 'brand_help' => 'Logo, Site Name', - 'web_brand' => 'Web Branding Type', + 'value' => 'Reikšmė', + 'brand' => 'Ženklodara', + 'brand_keywords' => 'poraštė, logotipas, spaudiniai, tema, apipavidalinimas, antraštė, spalvos, spalva, css', + 'brand_help' => 'Logotipas, Puslapio pavadinimas', + 'web_brand' => 'Žiniatinklio ženklodaros tipas', 'about_settings_title' => 'Apie nustatymus', - 'about_settings_text' => 'Šie nustatymai leidžia jums pasirinkti savus diegimo nustatymus.', + 'about_settings_text' => 'Šie nustatymai leidžia tinkinti tam tikrus diegimo aspektus.', 'labels_per_page' => 'Etikečių puslapyje', - 'label_dimensions' => 'Etiketės išmatavimai (coliais)', - 'next_auto_tag_base' => 'Kitas automatinis prieaugis', - 'page_padding' => 'Puslapio maržos (coliais)', - 'privacy_policy_link' => 'Privatumo politikos nuorodos', + 'label_dimensions' => 'Etiketės matmenys (coliais)', + 'next_auto_tag_base' => 'Sekanti automatinio padidinimo reikšmė', + 'page_padding' => 'Puslapio paraštės (coliais)', + 'privacy_policy_link' => 'Nuoroda į Privatumo politiką', 'privacy_policy' => 'Privatumo politika', - 'privacy_policy_link_help' => 'Jeigu nuorodas įterpsite čia tai nuorodos privatumo politikos bus įterptas poraštėje ir kiekviename siunčiame el. laiške, palaikant GDPR. ', - 'purge' => 'Išvalyti ištrintus įrašus', - 'purge_deleted' => 'Purge Deleted ', - 'labels_display_bgutter' => 'Etiketės apatinis latakai', - 'labels_display_sgutter' => 'Etiketės pusės latakai', + 'privacy_policy_link_help' => 'Jei šiame lange yra nurodytas puslapio adresas (URL), tai nuoroda į jūsų Privatumo politiką bus rodoma šios programos poraštėje ir visuose sistemos siunčiamuose el. laiškuose, kaip kad yra numatyta BDAR. ', + 'purge' => 'Išvalyti panaikintus įrašus', + 'purge_deleted' => 'Išvalyti panaikintus ', + 'labels_display_bgutter' => 'Etiketės apatinis tarpelis', + 'labels_display_sgutter' => 'Etiketės šoninis tarpelis', 'labels_fontsize' => 'Etiketės šrifto dydis', 'labels_pagewidth' => 'Etiketės lapo plotis', 'labels_pageheight' => 'Etiketės lapo aukštis', - 'label_gutters' => 'Etiketės tarpai (coliais)', + 'label_gutters' => 'Etikečių tarpai (coliai)', 'page_dimensions' => 'Puslapio matmenys (coliais)', - 'label_fields' => 'Žymėti laukus', - 'inches' => 'colių', - 'width_w' => 'w', - 'height_h' => 'h', - 'show_url_in_emails' => 'Nuoroda į "Snipe-IT" el. Paštu', - 'show_url_in_emails_help_text' => 'Atžymėkite šį langelį, jei nenorite susieti savo "Snipe-IT" diegimo savo el. Pašto dėžutėse. Naudinga, jei dauguma jūsų naudotojų niekada nebus prisijungę.', + 'label_fields' => 'Etiketėje atvaizduojami laukai', + 'inches' => 'coliai', + 'width_w' => 'p', + 'height_h' => 'a', + 'show_url_in_emails' => 'Nuoroda į Snipe-IT el. laiškuose', + 'show_url_in_emails_help_text' => 'Atžymėkite šį langelį, jei nenorite, kad el. laiškų poraštėse būtų nuoroda į jūsų Snipe-IT diegimą. Naudinga, jei dauguma naudotojų niekada nesijungia prie sistemos. ', 'text_pt' => 'pt', 'thumbnail_max_h' => 'Didžiausias miniatiūros aukštis', - 'thumbnail_max_h_help' => 'Didžiausias pikselių aukštis gali būti, kad miniatiūros gali būti rodomos sąrašo rodinyje. Min 25, maks. 500.', - 'two_factor' => 'Du veiksnių autentifikavimas', + 'thumbnail_max_h_help' => 'Maksimalus aukštis pikseliais, kokiu miniatiūros gali būti atvaizduojamos sąrašo rodinyje. Mažiausias yra 25, didžiausias – 500.', + 'two_factor' => 'Dviejų veiksnių autentifikacija', 'two_factor_secret' => 'Dviejų veiksnių kodas', 'two_factor_enrollment' => 'Dviejų veiksnių registracija', - 'two_factor_enabled_text' => 'Įgalinti du veiksnius', - 'two_factor_reset' => 'Atstatyti dviejų veiksnių paslaptį', - 'two_factor_reset_help' => 'This will force the user to enroll their device with their authenticator app again. This can be useful if their currently enrolled device is lost or stolen. ', - 'two_factor_reset_success' => 'Dviejų veiksnių įrenginys sėkmingai iš naujo nustatomas', - 'two_factor_reset_error' => 'Dviejų veiksnių įrenginio atstatymas nepavyko', - 'two_factor_enabled_warning' => 'Įjungus dviejų faktorių, jei jis šiuo metu neįjungtas, iš karto privers jus patvirtinti autentifikavimu naudojant "Google" prijungtą įrenginį. Jūs turėsite galimybę įregistruoti savo įrenginį, jei jis šiuo metu nėra įtrauktas.', - 'two_factor_enabled_help' => 'Tai įgalins dviejų veiksnių autentifikavimą naudojant "Google Authenticator".', + 'two_factor_enabled_text' => 'Įjungti dviejų veiksnių autentifikaciją', + 'two_factor_reset' => 'Iš naujo nustatyti dviejų veiksnių autentifikavimo slaptąjį raktą', + 'two_factor_reset_help' => 'Naudotojas turės iš naujo užregistruoti savo įrenginį autentifikavimo programoje. Tai gali būti naudinga, jei šiuo metu registruotas įrenginys buvo pamestas ar pavogtas. ', + 'two_factor_reset_success' => 'Dviejų veiksnių įrenginys pridėtas sėkmingai', + 'two_factor_reset_error' => 'Dviejų veiksnių įrenginio nustatymas iš naujo nepavyko', + 'two_factor_enabled_warning' => 'Įjungus dviejų veiksnių autentifikaciją (jei ji šiuo metu nėra įjungta) būsite iš karto priversti autentifikuotis naudojant „Google Authenticator“ užregistruotą įrenginį. Jei šiuo metu neturite užregistruoto įrenginio, tai turėsite galimybę jį užregistruoti.', + 'two_factor_enabled_help' => 'Bus įjungta dviejų veiksnių autentifikacija naudojant „Google Authenticator“.', 'two_factor_optional' => 'Atrankinis (vartotojai gali įjungti arba išjungti, jei tai leidžiama)', - 'two_factor_required' => 'Reikalingas visiems vartotojams', - 'two_factor_disabled' => 'Neįgalus', + 'two_factor_required' => 'Privalomas visiems naudotojams', + 'two_factor_disabled' => 'Išjungta', 'two_factor_enter_code' => 'Įveskite dviejų veiksnių kodą', - 'two_factor_config_complete' => 'Pateikti kodeksą', - 'two_factor_enabled_edit_not_allowed' => 'Jūsų administratorius neleidžia jums redaguoti šio nustatymo.', - 'two_factor_enrollment_text' => "Būtina atlikti du autentiškumo patvirtinimo veiksnius, tačiau jūsų įrenginys dar nebuvo užregistruotas. Atidarykite \"Google\" autentifikavimo priemonės programą ir nuskaitykite žemiau esantį QR kodą, kad užsiregistruotumėte savo įrenginį. Įrašę savo įrenginį įveskite žemiau esantį kodą", + 'two_factor_config_complete' => 'Pateikti kodą', + 'two_factor_enabled_edit_not_allowed' => 'Jūsų administratorius neleidžia keisti šio nustatymo.', + 'two_factor_enrollment_text' => "Būtina dviejų veiksnių autentifikacija, tačiau jūsų dar nesate užregistravę įrenginio. Norėdami užregistruoti įrenginį, jame atidarykite „Google Authenticator“ programą ir nuskaitykite čia pateiktą QR kodą. Užregistravę įrenginį, įveskite jo ekrane rodomą kodą į žemiau esantį lauką", 'require_accept_signature' => 'Reikalauti parašo', - 'require_accept_signature_help_text' => 'Įjungus šią funkciją, naudotojams reikės fiziškai atsisakyti priimti turtą.', + 'require_accept_signature_help_text' => 'Jei įjungsite šią funkciją, naudotojai turės fiziškai pasirašyti už jiems išduodamą įrangą.', 'left' => 'kairėje', - 'right' => 'teisus', + 'right' => 'dešinėje', 'top' => 'viršuje', 'bottom' => 'apačioje', 'vertical' => 'vertikalus', 'horizontal' => 'horizontalus', 'unique_serial' => 'Unikalus serijinis numeris', - 'unique_serial_help_text' => 'Pažymėtas šis langelis reiškia unikalius serijinius kiekvienam turtui', - 'zerofill_count' => 'Turto žymų ilgis, įskaitant "zerofill"', - 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', - 'oauth_title' => 'OAuth API Settings', + 'unique_serial_help_text' => 'Pažymėjus šį langelį, bus užtikrinamas įrangos serijinių numerių unikalumas', + 'zerofill_count' => 'Inventorinių numerių ilgis, įskaitant priekinius nulius', + 'username_format_help' => 'Šis nustatymas bus naudojamas importavimo procese tik tuo atveju, jei naudotojo vardas nebus pateiktas ir mes turėsime sugeneruoti naudotojo vardą.', + 'oauth_title' => 'OAuth API nustatymai', + 'oauth_clients' => 'OAuth klientai', 'oauth' => 'OAuth', - 'oauth_help' => 'Oauth Endpoint Settings', - 'asset_tag_title' => 'Update Asset Tag Settings', - 'barcode_title' => 'Update Barcode Settings', - 'barcodes' => 'Barcodes', - 'barcodes_help_overview' => 'Barcode & QR settings', - 'barcodes_help' => 'This will attempt to delete cached barcodes. This would typically only be used if your barcode settings have changed, or if your Snipe-IT URL has changed. Barcodes will be re-generated when accessed next.', - 'barcodes_spinner' => 'Attempting to delete files...', - 'barcode_delete_cache' => 'Delete Barcode Cache', - 'branding_title' => 'Update Branding Settings', - 'general_title' => 'Update General Settings', - 'mail_test' => 'Send Test', - 'mail_test_help' => 'This will attempt to send a test mail to :replyto.', - 'filter_by_keyword' => 'Filter by setting keyword', - 'security' => 'Security', - 'security_title' => 'Update Security Settings', - 'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication', - 'security_help' => 'Two-factor, Password Restrictions', - 'groups_keywords' => 'permissions, permission groups, authorization', - 'groups_help' => 'Account permission groups', - 'localization' => 'Localization', - 'localization_title' => 'Update Localization Settings', - 'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation', - 'localization_help' => 'Language, date display', - 'notifications' => 'Notifications', - 'notifications_help' => 'Email Alerts & Audit Settings', - 'asset_tags_help' => 'Incrementing and prefixes', - 'labels' => 'Labels', - 'labels_title' => 'Update Label Settings', - 'labels_help' => 'Label sizes & settings', - 'purge' => 'Purge', - 'purge_keywords' => 'permanently delete', + 'oauth_help' => 'Oauth Endpoint nustatymai', + 'oauth_no_clients' => 'Dar nesukūrėte jokių OAuth klientų.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Įgaliotos programos', + 'oauth_redirect_url' => 'Nukreipimo adresas (URL)', + 'oauth_name_help' => ' Kažkas, ką jūsų naudotojai atpažins ir pasitikės.', + 'oauth_scopes' => 'Taikymo sritys', + 'oauth_callback_url' => 'Jūsų programos autorizacijos tikrinimo adresas (URL).', + 'create_client' => 'Sukurti klientą', + 'no_scopes' => 'Nėra taikymo sričių', + 'asset_tag_title' => 'Atnaujinti inventorinio numerio nustatymus', + 'barcode_title' => 'Atnaujinti brūkšninio kodo nustatymus', + 'barcodes' => 'Brūkšniniai kodai', + 'barcodes_help_overview' => 'Brūkšninių ir QR kodų nustatymai', + 'barcodes_help' => 'Bus bandoma ištrinti talpykloje saugomus brūkšninius kodus. Įprastai, tai yra naudojama, tik jei pasikeitė brūkšninio kodo nustatymai arba pasikeitė Snipe-IT adresas. Brūkšniniai kodai bus sugeneruoti iš naujo, kai kitą kartą bus atidaryti.', + 'barcodes_spinner' => 'Bandoma ištrinti failus...', + 'barcode_delete_cache' => 'Išvalyti brūkšninių kodų talpyklą', + 'branding_title' => 'Atnaujinti ženklodaros nustatymus', + 'general_title' => 'Atnaujinti bendruosius nustatymus', + 'mail_test' => 'Siųsti bandomąjį laišką', + 'mail_test_help' => 'Bus mėginama išsiųsti bandomąjį laišką adresu :replyto.', + 'filter_by_keyword' => 'Filtruoti pagal nustatymų raktažodį', + 'security' => 'Saugumas', + 'security_title' => 'Atnaujinti saugumo nustatymus', + 'security_keywords' => 'slaptažodis, slaptažodžiai, reikalavimai, dviejų faktorių, dviejų veiksnių, įprasti slaptažodžiai, nuotolinis prisijungimas, atsijungimas, autentifikavimas', + 'security_help' => 'Dviejų veiksnių, slaptažodžio apribojimai', + 'groups_keywords' => 'teisės, teisių grupės, autorizacija', + 'groups_help' => 'Paskyros teisių grupės', + 'localization' => 'Lokalizacija', + 'localization_title' => 'Atnaujinti lokalizacijos nustatymus', + 'localization_keywords' => 'lokalizacija, valiuta, vietinis, lokalė, laiko juosta, laiko juosta, tarptautinis, internacionalizavimas, kalba, kalbos, vertimas', + 'localization_help' => 'Kalba, datos atvaizdavimas', + 'notifications' => 'Pranešimai', + 'notifications_help' => 'El. pašto įspėjimų ir audito nustatymai', + 'asset_tags_help' => 'Didinimas ir prefiksai', + 'labels' => 'Etiketės', + 'labels_title' => 'Atnaujinti etikečių nustatymus', + 'labels_help' => 'Etikečių dydžiai ir nustatymai', + 'purge' => 'Išvalyti', + 'purge_keywords' => 'ištrinti visam laikui', 'purge_help' => 'Išvalyti ištrintus įrašus', - 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', + 'ldap_extension_warning' => 'Panašu, kad šiame serveryje nėra įdiegtas arba įjungtas LDAP plėtinys. Vis tiek galite išsaugoti nustatymus, bet turėsite įjungti LDAP plėtinį PHP, kad veiktų LDAP sinchronizavimas arba prisijungimas.', 'ldap_ad' => 'LDAP/AD', 'employee_number' => 'Darbuotojo numeris', - 'create_admin_user' => 'Create a User ::', - 'create_admin_success' => 'Naudojamas turtas pridėtas sėkmingai!', - 'create_admin_redirect' => 'Click here to go to your app login!', - 'setup_migrations' => 'Database Migrations ::', - 'setup_no_migrations' => 'There was nothing to migrate. Your database tables were already set up!', - 'setup_successful_migrations' => 'Jūsų duomenų bazės lentelės sukurtos', - 'setup_migration_output' => 'Migration output:', - 'setup_migration_create_user' => 'Next: Create User', - 'ldap_settings_link' => 'LDAP nustatymai', - 'slack_test' => 'Test Integration', - 'label2_enable' => 'New Label Engine', - 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', - 'label2_template' => 'Template', - 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Pavadinimas', - 'label2_title_help' => 'The title to show on labels that support it', - 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', - 'label2_asset_logo' => 'Use Asset Logo', - 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', - 'label2_1d_type' => '1D Barcode Type', - 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D barkodo tipas', - 'label2_2d_type_help' => 'Format for 2D barcodes', - 'label2_2d_target' => '2D Barcode Target', - 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', - 'label2_fields' => 'Field Definitions', - 'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.', - 'help_asterisk_bold' => 'Text entered as **text** will be displayed as bold', - 'help_blank_to_use' => 'Leave blank to use the value from :setting_name', - 'help_default_will_use' => ':default will use the value from :setting_name.
Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see the documentation for more details. ', - 'default' => 'Default', - 'none' => 'Nėra', - 'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's Google developer console .', - 'google_login' => 'Google Workspace Login Settings', - 'enable_google_login' => 'Enable users to login with Google Workspace', - 'enable_google_login_help' => 'Users will not be automatically provisioned. They must have an existing account here AND in Google Workspace, and their username here must match their Google Workspace email address. ', - 'mail_reply_to' => 'Mail Reply-To Address', - 'mail_from' => 'Mail From Address', - 'database_driver' => 'Database Driver', - 'bs_table_storage' => 'Table Storage', - 'timezone' => 'Timezone', + 'create_admin_user' => 'Sukurti naudotoją ::', + 'create_admin_success' => 'Pavyko! Jūsų administratoriaus naudotojas buvo sukurtas!', + 'create_admin_redirect' => 'Spustelėkite čia, kad pereitumėte į prisijungimą prie programos!', + 'setup_migrations' => 'Duomenų bazių migracijos ::', + 'setup_no_migrations' => 'Nebuvo ko migruoti. Jūsų duomenų bazės lentelės jau buvo nustatytos!', + 'setup_successful_migrations' => 'Jūsų duomenų bazės lentelės buvo sukurtos', + 'setup_migration_output' => 'Migravimo išvestis:', + 'setup_migration_create_user' => 'Kitas: Sukurti naudotoją', + 'ldap_settings_link' => 'LDAP nustatymų puslapis', + 'slack_test' => 'Patikrinti integraciją', + 'label2_enable' => 'Naujas etikečių variklis', + 'label2_enable_help' => 'Perjunkite į naują etikečių variklį. Pastaba: turėsite išsaugoti šį nustatymą prieš nustatydami kitus.', + 'label2_template' => 'Šablonas', + 'label2_template_help' => 'Pasirinkite, kurį šabloną naudoti etikečių generavimui', + 'label2_title' => 'Antraštė', + 'label2_title_help' => 'Antraštė, kuri atvaizduojama tai palaikančiose etiketėse', + 'label2_title_help_phold' => 'Vietaženklis {COMPANY} bus pakeistas įrangos įmonės pavadinimu', + 'label2_asset_logo' => 'Naudoti įrangos logotipą', + 'label2_asset_logo_help' => 'Naudokite įrangai priskirtos įmonės logotipą, o ne :setting_name reikšmę', + 'label2_1d_type' => '1D brūkšninio kodo tipas', + 'label2_1d_type_help' => '1D brūkšninio kodo formatas', + 'label2_2d_type' => '2D brūkšninio kodo tipas', + 'label2_2d_type_help' => '2D brūkšninio kodo formatas', + 'label2_2d_target' => '2D brūkšninio kodo kelias', + 'label2_2d_target_help' => 'Adresas (URL), į kurį nukreipiama nuskaičius 2D brūkšninį kodą', + 'label2_fields' => 'Laukų apibrėžimai', + 'label2_fields_help' => 'Laukus galima pridėti, pašalinti ir pertvarkyti kairiajame stulpelyje. Kiekvienam laukui, dešiniajame stulpelyje galima pridėti kelias etiketės ir „DataSource“ parinktis, taip pat, jas pašalinti ir pertvarkyti.', + 'help_asterisk_bold' => 'Tekstas, įvestas kaip **tekstas**, bus rodomas paryškintu šriftu', + 'help_blank_to_use' => 'Palikite tuščią, kad būtų nauudojama :setting_name reikšmė', + 'help_default_will_use' => ':default naudos reikšmę iš :setting_name.
Atkreipkite dėmesį, kad brūkšninio kodo reikšmė turi atitikti atitinkamą brūkšninio kodo specifikaciją tam, kad būtų sėkmingai sugeneruota. Jei reikia daugiau informacijos, peržiūrėkite dokumentaciją. ', + 'default' => 'Numatytasis', + 'none' => 'Joks', + 'google_callback_help' => 'Čia turėtų būti nurodytas tas pats autorizacijos tikrinimo adresas (URL), kurį nurodėte savo organizacijos „Google OAuth“ programos nustatymuose adresu „Google Developer Console“ .', + 'google_login' => '„Google Workspace“ prisijungimo nustatymai', + 'enable_google_login' => 'Leisti naudotojams prisijungti su „Google Workspace“', + 'enable_google_login_help' => 'Naudotojai nebus automatiškai paruošiami. Jie turi turėti esamą paskyrą sistemoje IR „Google Workspace“, o naudotojo vardas sistemoje turi atitikti „Google Workspace“ el. pašto adresą. ', + 'mail_reply_to' => 'Pašto „Atsakyti kam“ adresas', + 'mail_from' => 'Pašto „Nuo“ adresas', + 'database_driver' => 'Duomenų bazės tvarkyklės', + 'bs_table_storage' => 'Lentelių saugojimas', + 'timezone' => 'Laiko juosta', ]; diff --git a/resources/lang/lt-LT/admin/settings/message.php b/resources/lang/lt-LT/admin/settings/message.php index 61f3c8923..770d47187 100644 --- a/resources/lang/lt-LT/admin/settings/message.php +++ b/resources/lang/lt-LT/admin/settings/message.php @@ -3,44 +3,44 @@ return [ 'update' => [ - 'error' => 'Atnaujinant iškilo nenumatyta problema. ', - 'success' => 'Nustatymai sėkmingai atnaujinti.', + 'error' => 'Atnaujinant įvyko klaida. ', + 'success' => 'Nustatymai atnaujinti sėkmingai.', ], 'backup' => [ - 'delete_confirm' => 'Ar tikrai norite ištrinti atsarginę kopiją? Šis veiksmas negalimas. ', - 'file_deleted' => 'Atsarginė kopija sėkmingai ištrinta. ', - 'generated' => 'Atsarginė kopija sėkmingai sukurta.', - 'file_not_found' => 'Atsarginė kopija nerasta.', - 'restore_warning' => 'Yes, restore it. I acknowledge that this will overwrite any existing data currently in the database. This will also log out all of your existing users (including you).', - 'restore_confirm' => 'Are you sure you wish to restore your database from :filename?' + 'delete_confirm' => 'Ar tikrai norite ištrinti atsarginę kopiją? Šis veiksmas negrįžtamas. ', + 'file_deleted' => 'Atsarginė kopija ištrinta sėkmingai. ', + 'generated' => 'Atsarginė kopija sukurta sėkmingai.', + 'file_not_found' => 'Šio atsarginės kopijos failo serveryje rasti nepavyko.', + 'restore_warning' => 'Taip, atkurti. Suprantu, kad tai perrašys visus šiuo metu duomenų bazėje esančius duomenis. Taip pat, kad bus atjungti visi esami naudotojai (įskaitant mane).', + 'restore_confirm' => 'Ar tikrai norite atkurti savo duomenų bazę iš :filename?' ], 'purge' => [ - 'error' => 'Išvalant įvyko klaida.', - 'validation_failed' => 'Jūsų valymo patvirtinimas yra neteisingas. Patvirtinimo laukelyje įrašykite žodį "DELETE".', - 'success' => 'Ištrinti įrašai sėkmingai išvalomi.', + 'error' => 'Valymo metu įvyko klaida. ', + 'validation_failed' => 'Jūsų įvestas išvalymo patvirtinimas yra neteisingas. Patvirtinimo lauke įveskite žodį „DELETE“.', + 'success' => 'Anksčiau panaikinti įrašai sėkmingai išvalyti.', ], 'mail' => [ - 'sending' => 'Sending Test Email...', + 'sending' => 'Siunčiamas bandomasis el. laiškas...', 'success' => 'El. laiškas išsiųstas!', 'error' => 'El. laiško išsiųsti nepavyko.', - 'additional' => 'No additional error message provided. Check your mail settings and your app log.' + 'additional' => 'Nėra jokio papildomo klaidos pranešimo. Patikrinkite pašto nustatymus ir programos žurnalą.' ], 'ldap' => [ - 'testing' => 'Testing LDAP Connection, Binding & Query ...', - '500' => '500 Server Error. Please check your server logs for more information.', - 'error' => 'Kažkas nepavyko :(', - 'sync_success' => 'A sample of 10 users returned from the LDAP server based on your settings:', - 'testing_authentication' => 'Testing LDAP Authentication...', - 'authentication_success' => 'User authenticated against LDAP successfully!' + 'testing' => 'Tikrinamas LDAP ryšys, susiejimas ir užklausos...', + '500' => '500 serverio klaida. Norėdami gauti daugiau informacijos, patikrinkite savo serverio žurnalus.', + 'error' => 'Kažkas ne taip :(', + 'sync_success' => 'Pavyzdys 10 vartotojų, grąžintų iš LDAP serverio, pagal jūsų nustatymus:', + 'testing_authentication' => 'Tikrinamas LDAP autentifikavimas...', + 'authentication_success' => 'Naudotojas sėkmingai atpažintas naudojant LDAP!' ], 'webhook' => [ - 'sending' => 'Sending :app test message...', - 'success' => 'Your :webhook_name Integration works!', - 'success_pt1' => 'Sėkmė! Patikrink ', - 'success_pt2' => ' channel for your test message, and be sure to click SAVE below to store your settings.', + 'sending' => ':app siunčiamas bandomasis pranešimas...', + 'success' => 'Jūsų :webhook_name integracija veikia!', + 'success_pt1' => 'Pavyko! Patikrink ', + 'success_pt2' => ' bandomojo pranešimo kanalą ir spustelėkite IŠSAUGOTI, kad išsaugotumėte nustatymus.', '500' => '500 serverio klaida.', - 'error' => 'Something went wrong. :app responded with: :error_message', - 'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.', - 'error_misc' => 'Kažkas nepavyko. :( ', + 'error' => 'Kažkas ne taip. :app atsakė: :error_message', + 'error_redirect' => 'KLAIDA: 301/302 :endpoint rodo peradresavimą. Saugumo sumetimais peradresavimų nevykdome. Naudokite tikrąjį galinį tašką.', + 'error_misc' => 'Kažkas ne taip. :( ', ] ]; diff --git a/resources/lang/lt-LT/admin/statuslabels/message.php b/resources/lang/lt-LT/admin/statuslabels/message.php index b3e53c6a2..2c41d938a 100644 --- a/resources/lang/lt-LT/admin/statuslabels/message.php +++ b/resources/lang/lt-LT/admin/statuslabels/message.php @@ -2,31 +2,31 @@ return [ - 'does_not_exist' => 'Statuso žymė neegzistuoja.', - 'deleted_label' => 'Deleted Status Label', - 'assoc_assets' => 'Ši būsenos etiketė šiuo metu yra susijusi su bent vienu turtu ir negali būti ištrinta. Prašome atnaujinti savo turtą, kad nebebūtų nuorodos į šį statusą ir bandykite dar kartą.', + 'does_not_exist' => 'Tokios būsenos žymos nėra.', + 'deleted_label' => 'Panaikinta būsenos žyma', + 'assoc_assets' => 'Ši būsenos žyma šiuo metu yra susieta bent su viena įranga ir negali būti panaikinta. Atnaujinkite savo įrangą, kad nebebūtų sąsajos su šia būsenos žyma, ir bandykite dar kartą. ', 'create' => [ - 'error' => 'Būsenos etiketė nebuvo sukurta, bandykite dar kartą.', - 'success' => 'Būsenos etiketė sėkmingai sukurta.', + 'error' => 'Būsenos žyma nebuvo sukurta, bandykite dar kartą.', + 'success' => 'Būsenos žyma sukurta sėkmingai.', ], 'update' => [ - 'error' => 'Būsenos etiketė nebuvo atnaujinta, bandykite dar kartą', - 'success' => 'Būsenos etiketė sėkmingai atnaujinta.', + 'error' => 'Būsenos žyma nebuvo atnaujinta, bandykite dar kartą', + 'success' => 'Būsenos žyma atnaujinta sėkmingai.', ], 'delete' => [ - 'confirm' => 'Ar tikrai norite ištrinti šią būsenos etiketę?', - 'error' => 'Buvo ištaisyta būklės etiketė. Prašau, pabandykite dar kartą.', - 'success' => 'Statuso etiketė sėkmingai ištrinta.', + 'confirm' => 'Ar tikrai norite panaikinti šią būsenos žymą?', + 'error' => 'Bandant panaikinti būsenos žymą įvyko klaida. Bandykite dar kartą.', + 'success' => 'Būsenos žyma panaikinta sėkmingai.', ], 'help' => [ - 'undeployable' => 'Šis turtas niekam negali būti priskirtas.', - 'deployable' => 'Ši įranga gali būti išduodama. Išdavus įrangą, jos būsena bus pakeista į Naudojama.', - 'archived' => 'Šio turto negalima patikrinti ir jis bus rodomas tik archyvuotame rodinyje. Tai naudinga, jei norite išsaugoti informaciją apie turtą, skirtą biudžetui / istoriniams tikslams, bet išlaikyti juos kasdieniame turto sąraše.', - 'pending' => 'Šis turtas dar negali būti priskirtas visiems, dažnai naudojamas daiktams, kurie yra remontuojami, tačiau tikimasi, kad jie grįš į apyvartą.', + 'undeployable' => 'Ši įranga negali būti niekam priskiriama.', + 'deployable' => 'Ši įranga gali būti išduodama. Išdavus įrangą, jos meta būsena pasikeis į Naudojama.', + 'archived' => 'Šios įrangos negalima išduoti, ji bus matoma tik archyviniame rodinyje. Ši būsena naudinga, norint išsaugoti duomenis apie įrangą biudžetavimo ar kitiems tikslams, tuo pačiu pašalinant ją iš kasdienių įrangos sąrašų.', + 'pending' => 'Ši įranga dar negali būti kam nors priskirta. Ši būsena dažniausiai naudojama, kai įranga yra perduota remontui, bet planuojama ją sugrąžinti į apyvartą.', ], ]; diff --git a/resources/lang/lt-LT/admin/statuslabels/table.php b/resources/lang/lt-LT/admin/statuslabels/table.php index bf0319c24..328e07c75 100644 --- a/resources/lang/lt-LT/admin/statuslabels/table.php +++ b/resources/lang/lt-LT/admin/statuslabels/table.php @@ -1,19 +1,19 @@ 'Apie būklės korteles', + 'about' => 'Apie būsenos žymas', 'archived' => 'Archyvuota', - 'create' => 'Sukurti būlės kortelę', + 'create' => 'Kurti būsenos žymą', 'color' => 'Diagramos spalva', - 'default_label' => 'Numatytoji etikėtė', - 'default_label_help' => 'Tai naudojama norint užtikrinti, kad dažniausiai naudotos būsenos etiketės būtų rodomos lango viršuje kuriant / redaguojant turtą.', - 'deployable' => 'Naudojamas', - 'info' => 'Būklės kortelės naudojamos apibūdinti įvairias jūsų įrangos būkles, kuriose ji randasi. Kortelės gali būti nurodančios, kad įranga remontuojama, prarasta, pavota ir t. t. Jūs galite suskurti naują būklės kortelę išduotiems, atnaujinamiems ir kitiems įrenginiams.', - 'name' => 'Būklės pavadinimas', - 'pending' => 'Vykdoma', - 'status_type' => 'Būklės tipas', - 'show_in_nav' => 'Rodyti šoninį namą', - 'title' => 'Būklės kortelės', - 'undeployable' => 'Negalimas naudoti', - 'update' => 'Atnaujinti būklės kortelę', + 'default_label' => 'Numatytoji žyma', + 'default_label_help' => 'Tai naudojama siekiant užtikrinti, kad kuriant ar redaguojant įrangą, dažniausiai naudojamos būsenos žymos būtų rodomos pasirinkimo lauko viršuje.', + 'deployable' => 'Naudotini', + 'info' => 'Būsenos žymos nusako galimas jūsų įrangos būsenas. Pavyzdžiui, įranga gali būti perduota remontui, pamesta/pavogta ir kt. Čia galite kurti naujas būsenos žymai naudotinai, ruošiamai ir archyvuotai įrangai.', + 'name' => 'Būsenos pavadinimas', + 'pending' => 'Ruošiama', + 'status_type' => 'Būsenos tipas', + 'show_in_nav' => 'Rodyti šoniniame meniu', + 'title' => 'Būsenos žymos', + 'undeployable' => 'Neišduodama', + 'update' => 'Atnaujinti būsenos žymą', ); diff --git a/resources/lang/lt-LT/admin/suppliers/message.php b/resources/lang/lt-LT/admin/suppliers/message.php index 6d49c5653..a06ff0dc6 100644 --- a/resources/lang/lt-LT/admin/suppliers/message.php +++ b/resources/lang/lt-LT/admin/suppliers/message.php @@ -7,22 +7,22 @@ return array( 'create' => array( - 'error' => 'Tiekėjas nesukurtas. Prašome bandykite dar kartą.', - 'success' => 'Tiekėjas sėkmingai sukurtas.' + 'error' => 'Tiekėjas nebuvo sukurtas, bandykite dar kartą.', + 'success' => 'Tiekėjas sukurtas sėkmingai.' ), 'update' => array( - 'error' => 'Tiekėjas neatnaujintas. Prašome bandykite dar kartą', - 'success' => 'Tiekėjas sėkmingai atnaujintas.' + 'error' => 'Tiekėjas nebuvo atnaujintas, bandykite dar kartą', + 'success' => 'Tiekėjas atnaujintas sėkmingai.' ), 'delete' => array( - 'confirm' => 'Ar jūs tikrai norite ištrinti šį tiekėją?', - 'error' => 'Nepavyko ištrinti tiekėjo. Prašome bandykite dar kartą.', - 'success' => 'Tiekėjas ištrintas sėkmingai.', - 'assoc_assets' => 'Šis tiekėjas šiuo metu susietas su bent vienu modeliu ir negali būti ištrintas. Prašome atnaujinkite savo modelius, kad šie nebūtu susieti su šiuo tiekėju ir bandykite dar kartą. ', - 'assoc_licenses' => 'Šis tiekėjas šiuo metu susietas su licenzija ir negali būti ištrinti. Prašome atnaujinkite savo modelius, kad šie nebūtų susieti su šiuo tiekėjų ir bandykite dar kartą. ', - 'assoc_maintenances' => 'Šis tiekėjas šiuo metu susietas su bent vienu modeliu ir negali būti ištrintas. Prašome atnaujinkite savo modelius, kad šie nebūtu susieti su šiuo tiekėju ir bandykite dar kartą. ', + 'confirm' => 'Ar tikrai norite panaikinti šį tiekėją?', + 'error' => 'Bandant panaikinti tiekėją įvyko klaida. Bandykite dar kartą.', + 'success' => 'Tiekėjas panaikintas sėkmingai.', + 'assoc_assets' => 'Šis tiekėjas šiuo metu yra susietas su :asset_count įranga (-omis) ir negali būti panaikintas. Atnaujinkite savo įrangą, kad nebebūtų sąsajos su šiuo tiekėju, ir bandykite dar kartą. ', + 'assoc_licenses' => 'Šis tiekėjas šiuo metu yra susietas su :licenses_count licencija (-omis) ir negali būti panaikintas. Atnaujinkite savo licencijas, kad nebebūtų sąsajos su šiuo tiekėju, ir bandykite dar kartą. ', + 'assoc_maintenances' => 'Šis tiekėjas šiuo metu yra susietas su :asset_maintenances_count įrangos aptarnavimu (-ais) ir negali būti panaikintas. Atnaujinkite savo įrangos aptarnavimus, kad nebebūtų sąsajos su šiuo tiekėju, ir bandykite dar kartą. ', ) ); diff --git a/resources/lang/lt-LT/admin/suppliers/table.php b/resources/lang/lt-LT/admin/suppliers/table.php index 584ddc7bb..d7dbcae7d 100644 --- a/resources/lang/lt-LT/admin/suppliers/table.php +++ b/resources/lang/lt-LT/admin/suppliers/table.php @@ -6,21 +6,21 @@ return array( 'address' => 'Tiekėjo adresas', 'assets' => 'Įranga', 'city' => 'Miestas', - 'contact' => 'Kontaktinis žmogus', + 'contact' => 'Kontaktinis asmuo', 'country' => 'Šalis', 'create' => 'Sukurti tiekėją', 'email' => 'El. paštas', 'fax' => 'Faksas', 'id' => 'ID', - 'licenses' => 'Licenzijos', + 'licenses' => 'Licencijos', 'name' => 'Tiekėjo pavadinimas', 'notes' => 'Pastabos', - 'phone' => 'Telefonas', + 'phone' => 'Telefono Nr.', 'state' => 'Rajonas', 'suppliers' => 'Tiekėjai', 'update' => 'Atnaujinti tiekėją', 'view' => 'Peržiūrėti tiekėją', - 'view_assets_for' => 'Peržiūrėti įrangą šiam', + 'view_assets_for' => 'Įrangos peržiūra –', 'zip' => 'Pašto kodas', ); diff --git a/resources/lang/lt-LT/admin/users/general.php b/resources/lang/lt-LT/admin/users/general.php index 35a634d67..409058a67 100644 --- a/resources/lang/lt-LT/admin/users/general.php +++ b/resources/lang/lt-LT/admin/users/general.php @@ -1,54 +1,54 @@ 'Šis vartotojas gali prisijungti', - 'activated_disabled_help_text' => 'Jūs negalite keisti savosios pąskyros aktyvacijos statuso.', - 'assets_user' => 'Priskirta įranga :name', - 'bulk_update_warn' => 'Jūs ketinate redaguoti vartotojų: user_count savybes. Atminkite, kad negalėsite pakeisti savo naudotojo atributų naudodami šią formą ir savo pasirinkimą keisti individualiai.', - 'bulk_update_help' => 'Ši forma leidžia vienu metu atnaujinti kelis naudotojus. Užpildykite tik tuos laukelius, kuriuos reikia keisti. Visi tušti laukai lieka nepakeisti.', - 'current_assets' => 'Šiam vartotojui priskirta įranga', - 'clone' => 'Kopijuoti naudotoją', + 'activated_help_text' => 'Šis naudotojas gali prisijungti', + 'activated_disabled_help_text' => 'Negalite redaguoti savo paskyros aktyvinimo būsenos.', + 'assets_user' => 'Įranga išduota :name', + 'bulk_update_warn' => 'Ketinate redaguoti :user_count naudotojų savybes. Atminkite, kad naudodami šią formą, savo naudotojo atributų keisti negalite – savo naudotoją turite redaguoti atskirai.', + 'bulk_update_help' => 'Ši forma suteikia galimybę atnaujinti iškart kelis naudotojus. Užpildykite tik tuos laukus, kuriuos norite pakeisti. Laukai, kuriuos paliksite tuščius, liks nepakeisti.', + 'current_assets' => 'Šiam naudotojui išduota įranga', + 'clone' => 'Klonuoti naudotoją', 'contact_user' => 'Susisiekti su :name', 'edit' => 'Redaguoti naudotoją', - 'filetype_info' => 'Leidžiami dokumentų formatai png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, rar.', + 'filetype_info' => 'Leidžiami failų tipai yra: png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, rar.', 'history_user' => ':name naudotojo istorija', 'info' => 'Informacija', - 'restore_user' => 'Spauskite čia norėdami juos atkurti.', + 'restore_user' => 'Spustelėkite čia, kad juos atkurtumėte.', 'last_login' => 'Paskutinis prisijungimas', - 'ldap_config_text' => 'LDAP konfigūracijos parametrus galite rasti Administratorius> Nustatymai. Pasirinkta vieta (pasirinktinai) bus nustatyta visiems importuojamiems vartotojams.', - 'print_assigned' => 'Spausdinti visą turtą', - 'email_assigned' => 'Siųsti el. paštu visą priskirtą įrangą', - 'user_notified' => 'Naudotojui išsiųtas jam šiuo metu priskirtos įrangos sąrašas.', - 'auto_assign_label' => 'Include this user when auto-assigning eligible licenses', - 'auto_assign_help' => 'Skip this user in auto assignment of licenses', - 'software_user' => ':name išduota įranga', - 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.', - 'view_user' => 'Peržiūrėti :name vartotoją', - 'usercsv' => 'CSV dokumentas', - 'two_factor_admin_optin_help' => 'Dabartiniai jūsų nustatymai leidžia pasirinkti dviejų veiksnių autentifikavimą.', + 'ldap_config_text' => 'LDAP konfigūracijos nustatymus rasite „Administratorius > Nustatymai“. Pasirinkta (neprivaloma) vieta bus priskirta visiems importuotiems naudotojams.', + 'print_assigned' => 'Spausdinti išduotą', + 'email_assigned' => 'El. paštu nusiųsti išduotos įrangos sąrašą', + 'user_notified' => 'Naudotojui el. paštu išsiųstas jam priskirto inventoriaus sąrašas.', + 'auto_assign_label' => 'Įtraukti šį naudotoją, kai automatiškai priskiriamos tinkamos licencijos', + 'auto_assign_help' => 'Praleisti šį naudotoją, kai automatiškai priskiriamos licencijos', + 'software_user' => 'Programinė įranga išduota: :name', + 'send_email_help' => 'Turite nurodyti šio naudotojo el. pašto adresą, kad galėmtumėte jam nusiųsti prisijungimo duomenis. El. pašto prisijungimo duomenis galima siųsti tik kuriant naudotoją. Slaptažodžiai saugomi vienpuse maiša ir jų negalima atkurti po to, kai jie yra išsaugomi.', + 'view_user' => 'Peržiūrėti naudotoją :name', + 'usercsv' => 'CSV failas', + 'two_factor_admin_optin_help' => 'Dabartiniai administratoriaus nustatymai leidžia pasirinktinai naudoti dviejų veiksnių autentifikavimą. ', 'two_factor_enrolled' => '2FA įrenginys įtrauktas ', 'two_factor_active' => '2FA aktyvus ', 'user_deactivated' => 'Naudotojas negali prisijungti', 'user_activated' => 'Naudotojas gali prisijungti', - 'activation_status_warning' => 'Do not change activation status', - 'group_memberships_helpblock' => 'Tik superadministratoriai gali modifikuoti grupės narystes.', - 'superadmin_permission_warning' => 'Tik superadministratoriai gali priskirti superadministratoriaus prieigą.', - 'admin_permission_warning' => 'Tik administratoriai ir aukštesnes teises turintys naudotojai gali priskirti administratoriaus narystę.', - 'remove_group_memberships' => 'Pašalinti grupės narystes', - 'warning_deletion_information' => 'You are about to checkin ALL items from the :count user(s) listed below. Super admin names are highlighted in red.', - 'update_user_assets_status' => 'Atnaujinti visą įrangą šiems naudotojams į šį statusą', - 'checkin_user_properties' => 'Check in all properties associated with these users', + 'activation_status_warning' => 'Nekeisti aktyvinimo būsenos', + 'group_memberships_helpblock' => 'Tik superadministratoriai gali keisti grupių narystes.', + 'superadmin_permission_warning' => 'Tik superadministratoriai gali suteikti superadministratoriaus prieigą.', + 'admin_permission_warning' => 'Tik administratoriai ir aukštesnes teises turintys naudotojai gali suteikti administratoriaus prieigą.', + 'remove_group_memberships' => 'Pašalinti grupių narystes', + 'warning_deletion_information' => 'Ketinate paimti VISUS elementus iš žemiau išvardintų :count naudotojų. Superadministratorių vardai yra paryškinti raudonai.', + 'update_user_assets_status' => 'Atnaujinti visos šių naudotojų įrangos būsenas į šią būseną', + 'checkin_user_properties' => 'Paimti visą su šiais naudotojais susietą turtą', 'remote_label' => 'Tai nuotolinis naudotojas', 'remote' => 'Nuotolinis', - 'remote_help' => 'This can be useful if you need to filter by remote users who never or rarely come into your physical locations.', + 'remote_help' => 'Tai gali būti naudinga, jei reikia filtruoti pagal nuotolinius naudotojus, kurie niekada arba retai atvyksta į jūsų fizines vietas.', 'not_remote_label' => 'Tai ne nuotolinis naudotojas', 'vip_label' => 'VIP naudotojas', - 'vip_help' => 'This can be helpful to mark important people in your org if you would like to handle them in special ways.', + 'vip_help' => 'Tai gali būti naudinga pažymint svarbius žmones savo organizacijoje, jei norėtumėte su jais elgtis ypatingai.', 'create_user' => 'Sukurti naudotoją', - 'create_user_page_explanation' => 'This is the account information you will use to access the site for the first time.', - 'email_credentials' => 'Email credentials', - 'email_credentials_text' => 'Email my credentials to the email address above', + 'create_user_page_explanation' => 'Tai yra paskyros informacija, kurią naudosite norėdami pirmą kartą prisijungti prie svetainės.', + 'email_credentials' => 'Siųsti prisijungimo duomenis', + 'email_credentials_text' => 'Išsiųskite mano prisijungimo duomenis aukščiau nurodytu el. pašto adresu', 'next_save_user' => 'Toliau: išsaugoti naudotoją', 'all_assigned_list_generation' => 'Sugeneruota:', - 'email_user_creds_on_create' => 'Email this user their credentials?', + 'email_user_creds_on_create' => 'Siųsti naudotojui jo prisijungimo duomenis?', ]; diff --git a/resources/lang/lt-LT/admin/users/message.php b/resources/lang/lt-LT/admin/users/message.php index 5b0f11598..3c7d800c0 100644 --- a/resources/lang/lt-LT/admin/users/message.php +++ b/resources/lang/lt-LT/admin/users/message.php @@ -3,72 +3,72 @@ return array( 'accepted' => 'Jūs sėkmingai priėmėte šią įrangą.', - 'declined' => 'Jūs sėkmingai atšaukėte šią įrangą.', - 'bulk_manager_warn' => 'Jūsų vartotojai buvo sėkmingai atnaujinti, tačiau jūsų valdytojo įrašas nebuvo išsaugotas, nes pasirinktas valdytojas taip pat buvo naudotojo sąraše, kurį reikia redaguoti, o vartotojai gali būti ne jų valdytojai. Prašome vėl pasirinkti naudotojus, išskyrus valdytoją.', - 'user_exists' => 'Naudotojas jau yra!', - 'user_not_found' => 'Naudotojo nėra.', - 'user_login_required' => 'Prisijungimo laukelis privalomas', - 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', - 'user_password_required' => 'Slaptažodis būtinas.', - 'insufficient_permissions' => 'Nepakankamos teisės.', - 'user_deleted_warning' => 'Šis naudotojas ištrintas. Jūs turėsite atkurti naudotoją norėdami redaguoto ar priskirti jam naują įrangą.', - 'ldap_not_configured' => 'LDAP integracija nebuvo sukonfikuruota šiam diegimui.', - 'password_resets_sent' => 'The selected users who are activated and have a valid email addresses have been sent a password reset link.', - 'password_reset_sent' => 'A password reset link has been sent to :email!', - 'user_has_no_email' => 'This user does not have an email address in their profile.', - 'log_record_not_found' => 'Atitinkamas log įrašas šiam naudotojui nerastas.', + 'declined' => 'Jūs sėkmingai atsisakėte priimti šią įrangą.', + 'bulk_manager_warn' => 'Jūsų naudotojai buvo sėkmingai atnaujinti, tačiau tiesioginio vadovo informacija nebuvo išsaugota, nes jūsų nurodytas tiesioginis vadovas taip pat buvo redaguojamų naudotojų sąraše. Naudotojas negali būti savo paties tiesioginiu vadovu, todėl dar kartą pasirinkite naudotojus, neįtraukdami tiesioginio vadovo.', + 'user_exists' => 'Toks naudotojas jau yra!', + 'user_not_found' => 'Tokio naudotojo nėra.', + 'user_login_required' => 'Prisijungimo laukas yra privalomas', + 'user_has_no_assets_assigned' => 'Naudotojui neišduota jokia įranga.', + 'user_password_required' => 'Slaptažodis yra privalomas.', + 'insufficient_permissions' => 'Nepakanka teisių.', + 'user_deleted_warning' => 'Šis naudotojas buvo panaikintas. Turėsite atkurti naudotoją, jeigu norėsite jį redaguoti ar priskirti jam naują įrangą.', + 'ldap_not_configured' => 'LDAP integracija nebuvo sukonfigūruota šiam diegimui.', + 'password_resets_sent' => 'Pasirinktiems naudotojams, kurie yra aktyvuoti ir turi galiojančius el. pašto adresus, buvo išsiųsta slaptažodžio nustatymo iš naujo nuoroda.', + 'password_reset_sent' => 'Slaptažodžio nustatymo iš naujo nuoroda buvo išsiųsta į :email!', + 'user_has_no_email' => 'Šis naudotojas savo profilyje neturi el. pašto adreso.', + 'log_record_not_found' => 'Su šiuo naudotoju susijusių žurnalo įrašų nerasta.', 'success' => array( - 'create' => 'Naudotojas sėkmingai sukurtas.', - 'update' => 'Naudotojas sėkmingai atnaujintas.', - 'update_bulk' => 'Vartotojai buvo sėkmingai atnaujinti!', - 'delete' => 'Naudotojas sėkmingai ištrintas.', - 'ban' => 'Naudotojas sėkmingai užblokuotas.', - 'unban' => 'Naudotojas sėkmingai atblokuotas.', - 'suspend' => 'Naudotojas sėkmingai užšaldytas.', - 'unsuspend' => 'Naudotojas sėkmingai atšaldytas.', - 'restored' => 'Naudotojas sėkmingai atkurtas.', - 'import' => 'Naudotojai sėkmingai įkelti.', + 'create' => 'Naudotojas sukurtas sėkmingai.', + 'update' => 'Naudotojas atnaujintas sėkmingai.', + 'update_bulk' => 'Naudotojai atnaujinti sėkmingai!', + 'delete' => 'Naudotojas panaikintas sėkmingai.', + 'ban' => 'Naudotojas užblokuotas sėkmingai.', + 'unban' => 'Naudotojas atblokuotas sėkmingai.', + 'suspend' => 'Naudotojas išjungtas sėkmingai.', + 'unsuspend' => 'Naudotojas įjungtas sėkmingai.', + 'restored' => 'Naudotojas atkurtas sėkmingai.', + 'import' => 'Naudotojai importuoti sėkmingai.', ), 'error' => array( - 'create' => 'Nepavyko sukurti naudotojo. Prašome bandykite dar kartą.', - 'update' => 'Nepavyko atnaujinti naudotojo. Prašome bandykite dar kartą.', - 'delete' => 'Nepavyko ištrinti naudotojo. Prašome bandykite dar kartą.', - 'delete_has_assets' => 'Šis vartotojas turi priskirtus elementus, kurių negalima ištrinti.', - 'delete_has_assets_var' => 'This user still has an asset assigned. Please check it in first.|This user still has :count assets assigned. Please check their assets in first.', - 'delete_has_licenses_var' => 'This user still has a license seats assigned. Please check it in first.|This user still has :count license seats assigned. Please check them in first.', - 'delete_has_accessories_var' => 'This user still has an accessory assigned. Please check it in first.|This user still has :count accessories assigned. Please check their assets in first.', - 'delete_has_locations_var' => 'This user still manages a location. Please select another manager first.|This user still manages :count locations. Please select another manager first.', - 'delete_has_users_var' => 'This user still manages another user. Please select another manager for that user first.|This user still manages :count users. Please select another manager for them first.', - 'unsuspend' => 'Nepavyko atšaldyti naudotojo. Prašome bandykite dar kartą.', - 'import' => 'Nepavyko įkelti naudotojų. Prašome bandykite dar kartą.', - 'asset_already_accepted' => 'ši įranga jau buvo priimta.', - 'accept_or_decline' => 'Jūs turite arba priimti arba atmesti šią įrangą.', - 'cannot_delete_yourself' => 'We would feel really bad if you deleted yourself, please reconsider.', - 'incorrect_user_accepted' => 'Įranga kurią bandote priimti, nebuvo priskirta Jums.', - 'ldap_could_not_connect' => 'Negali prisijungti prie LDAP serverio. Prašome patikrinkite savo LDAP serverio konfigūraciją LDAP konfigūracijos faile.
Klaida iš LDAP Serverio:', - 'ldap_could_not_bind' => 'Negali nustatyti vartotojo prisijungiant prie LDAP serverio. Prašome patikrinkite savo LDAP serverio konfigūraciją LDAP konfigūracijos faile.
Klaida iš LDAP Serverio: ', - 'ldap_could_not_search' => 'Negali rasti LDAP serverio. Prašome patikrinkite savo LDAP serverio konfigūraciją LDAP konfigūracijos faile.
Klaida iš LDAP Serverio:', - 'ldap_could_not_get_entries' => 'Negali gauti prieigos prie LDAP serverio. Prašome patikrinkite savo LDAP serverio konfigūraciją LDAP konfigūracijos faile.
Klaida iš LDAP Serverio:', - 'password_ldap' => 'Šios paskyros slaptažodį tvarko LDAP / Active Directory. Prašome susisiekti su savo IT departamentu, kad pakeistumėte slaptažodį.', + 'create' => 'Bandant sukurti naudotoją įvyko klaida. Bandykite dar kartą.', + 'update' => 'Bandant atnaujinti naudotoją įvyko klaida. Bandykite dar kartą.', + 'delete' => 'Bandant panaikinti naudotoją įvyko klaida. Bandykite dar kartą.', + 'delete_has_assets' => 'Šis naudotojas turi jam išduotų elementų, todėl jo panaikinti negalima.', + 'delete_has_assets_var' => 'Šiam naudotojui yra išduota įranga. Pirmiausia paimkite ją.|Šiam naudotojui yra išduotos :count įrangos (-ų). Pirmiausia paimkite jų įrangą.', + 'delete_has_licenses_var' => 'Šiam naudotojui yra priskirta licencija. Pirmiausia paimkite ją.|Šiam naudotojui yra priskirtos :count licencijos (-ų). Pirmiausia paimkite jas.', + 'delete_has_accessories_var' => 'Šiam naudotojui yra išduotas priedas. Pirmiausia paimkite jį.|Šiam naudotojui yra išduoti :count priedai (-ų). Pirmiausia paimkite juos.', + 'delete_has_locations_var' => 'Šis naudotojas vis dar atsakingas už vieną vietą. Pirmiausia parinkite kitą valdytoją.|Šis naudotojas vis dar atsakingas už :count vietas (-ų). Pirmiausia parinkite kitą valdytoją.', + 'delete_has_users_var' => 'Šis naudotojas vis dar turi pavaldinį. Pirmiausia parinkite kitą tiesioginį vadovą šiam pavaldiniui.|Šis naudotojas vis dar turi :count pavaldinius (-ių). Pirmiausia parinkite kitą tiesioginį vadovą šiems naudotojams.', + 'unsuspend' => 'Bandant įjungti naudotoją įvyko klaida. Bandykite dar kartą.', + 'import' => 'Bandant importuoti naudotojus įvyko klaida. Bandykite dar kartą.', + 'asset_already_accepted' => 'Ši įranga jau buvo priimta.', + 'accept_or_decline' => 'Turite arba priimti šią įrangą, arba jos atsisakyti.', + 'cannot_delete_yourself' => 'Jaustumėmės labai blogai, jei panaikintumėte save, dar kartą apsvarstykite.', + 'incorrect_user_accepted' => 'Įranga kurią bandote priimti, nebuvo jums priskirta.', + 'ldap_could_not_connect' => 'Nepavyko prisijungti prie LDAP serverio. Patikrinkite LDAP serverio konfigūraciją LDAP konfigūracijos faile.
LDAP serverio klaida:', + 'ldap_could_not_bind' => 'Nepavyko susieti su LDAP serveriu. Patikrinkite LDAP serverio konfigūraciją LDAP konfigūracijos faile.
LDAP serverio klaida: ', + 'ldap_could_not_search' => 'Nepavyko paieška LDAP serveryje. Patikrinkite LDAP serverio konfigūraciją LDAP konfigūracijos faile.
LDAP serverio klaida:', + 'ldap_could_not_get_entries' => 'Nepavyko gauti įrašų iš LDAP serverio. Patikrinkite LDAP serverio konfigūraciją LDAP konfigūracijos faile.
LDAP serverio klaida:', + 'password_ldap' => 'Šios paskyros slaptažodį tvarko LDAP / Active Directory. Prašome susisiekti su savo IT skyriumi, kad pakeistumėte slaptažodį. ', ), 'deletefile' => array( - 'error' => 'Failas neištrintas. Prašome bandykite dar kartą.', - 'success' => 'Failas sėkmingai ištrintas.', + 'error' => 'Failas nebuvo panaikintas. Bandykite dar kartą.', + 'success' => 'Failas panaikintas sėkmingai.', ), 'upload' => array( - 'error' => 'Failas (-ai) neįkelti. Prašome bandykite dar kartą.', - 'success' => 'Failas (-ai) sėkmingai įkelti.', - 'nofiles' => 'Įkėlimui jūs nepasirinkote jokių failų', - 'invalidfiles' => 'Vienas ar keli failai yra per dideli arba neleidžiamas šis failų formatas. Primename, kad leidžiami sekantys formatai png, gif, jpg, doc, docx, pdf, txt.', + 'error' => 'Failo (-ų) įkelti nepavyko. Bandykite dar kartą.', + 'success' => 'Failas (-ai) įkelti sėkmingai.', + 'nofiles' => 'Nepasirinkote jokių failų įkėlimui', + 'invalidfiles' => 'Vienas ar keli failai yra per dideli arba neleistinas šis failų formatas. Leidžiami failų tipai yra: png, gif, jpg, doc, docx, pdf ir txt.', ), 'inventorynotification' => array( - 'error' => 'This user has no email set.', - 'success' => 'The user has been notified about their current inventory.' + 'error' => 'Šis naudotojas neturi el. pašto adreso.', + 'success' => 'Naudotojui buvo pranešta apie jo turimą inventorių.' ) ); \ No newline at end of file diff --git a/resources/lang/lt-LT/admin/users/table.php b/resources/lang/lt-LT/admin/users/table.php index 59a1e2fa5..f934e8e90 100644 --- a/resources/lang/lt-LT/admin/users/table.php +++ b/resources/lang/lt-LT/admin/users/table.php @@ -10,9 +10,9 @@ return array( 'email' => 'El. paštas', 'employee_num' => 'Darbuotojo nr.', 'first_name' => 'Vardas', - 'groupnotes' => 'Select a group to assign to the user, remember that a user takes on the permissions of the group they are assigned. Use ctrl+click (or cmd+click on MacOS) to deselect groups.', + 'groupnotes' => 'Pasirinkite grupę, kurią norite priskirti naudotojui ir nepamirškite, kad naudotojas gauna jam priskirtos grupės prieigos teises. Norėdami panaikinti grupių pasirinkimą, naudokite Ctrl + spustelėjimas (arba cmd + spustelėjimas, jei naudojate MacOS).', 'id' => 'Id', - 'inherit' => 'Paveldėjo/gavo iš', + 'inherit' => 'Paveldėti', 'job' => 'Pozicija', 'last_login' => 'Paskutinis prisijungimas', 'last_name' => 'Pavardė', @@ -20,22 +20,22 @@ return array( 'lock_passwords' => 'Prisijungimo duomenys negali būti keičiami šio diegimo metu.', 'manager' => 'Tiesioginis vadovas', 'managed_locations' => 'Valdomos vietos', - 'managed_users' => 'Managed Users', - 'name' => 'Pavadinimas', - 'nogroup' => 'No groups have been created yet. To add one, visit: ', + 'managed_users' => 'Pavaldiniai', + 'name' => 'Visas vardas', + 'nogroup' => 'Dar nesukurta jokia grupė. Norėdami sukurti grupę, apsilankykite: ', 'notes' => 'Pastabos', 'password_confirm' => 'Patvirtinti slaptažodį', 'password' => 'Slaptažodis', - 'phone' => 'Telefonas', + 'phone' => 'Telefono Nr.', 'show_current' => 'Rodyti esamus naudotojus', - 'show_deleted' => 'Rodyti ištrintus naudotojus', + 'show_deleted' => 'Rodyti panaikintus naudotojus', 'title' => 'Antraštė', 'to_restore_them' => 'juos atkurti.', 'total_assets_cost' => "Bendra įrangos vertė", 'updateuser' => 'Atnaujinti naudotoją', - 'username' => 'Vartotojo vardas', - 'user_deleted_text' => 'Šis naudotojas pažymėtas kaip ištrintas.', - 'username_note' => '(Tai naudojamą tik aktyviam direktorijos binding ne prisijungimui.)', - 'cloneuser' => 'Kopijuoti naudotoją', + 'username' => 'Naudotojo vardas', + 'user_deleted_text' => 'Šis naudotojas buvo pažymėtas kaip panaikintas.', + 'username_note' => '(Tai naudojama tik „Active Directory“ susiejimui, o ne prisijungimui.)', + 'cloneuser' => 'Klonuoti naudotoją', 'viewusers' => 'Peržiūrėti naudotojus', ); diff --git a/resources/lang/lt-LT/auth/general.php b/resources/lang/lt-LT/auth/general.php index 4c6fc2455..7ad34c49e 100644 --- a/resources/lang/lt-LT/auth/general.php +++ b/resources/lang/lt-LT/auth/general.php @@ -1,19 +1,19 @@ 'Slaptažodžio atkūrimo nuoroda', - 'email_reset_password' => 'El. Pašto slaptažodžio atstatymas', - 'reset_password' => 'Atstatyti slaptažodį', + 'send_password_link' => 'Siųsti slaptažodžio nustatymo iš naujo nuorodą', + 'email_reset_password' => 'Siųsti slaptažodžio nustatymo iš naujo nuorodą', + 'reset_password' => 'Nustatyti slaptažodį iš naujo', 'saml_login' => 'Prisijungti naudojant SAML', - 'login' => 'Prisijungimas', + 'login' => 'Prisijungti', 'login_prompt' => 'Prašome prisijungti', 'forgot_password' => 'Aš pamiršau savo slaptažodį', - 'ldap_reset_password' => 'Paspauskite norėdami pakeisti savo slaptažodį', + 'ldap_reset_password' => 'Spustelėkite čia, kad iš naujo nustatytumėte savo LDAP slaptažodį', 'remember_me' => 'Prisiminti mane', - 'username_help_top' => 'Įveskite savo prisijungimo vardą, kad būtų atsiųsta slaptažodžio atstatymo nuoroda.', - 'username_help_bottom' => 'Your username and email address may be the same, but may not be, depending on your configuration. If you cannot remember your username, contact your administrator.

Usernames without an associated email address will not be emailed a password reset link. ', - 'google_login' => 'Login with Google Workspace', - 'google_login_failed' => 'Google prisijungimas nepavyko, bandykite vėl.', + 'username_help_top' => 'Įveskite savo naudotojo vardą, kad el. paštu būtų išsiųsta slaptažodžio nustatymo iš naujo nuoroda.', + 'username_help_bottom' => 'Jūsų naudotojo vardas ir el. pašto adresas gali sutapti, bet gali ir ne, priklausomai nuo konfigūracijos. Jei neprisimenate savo naudotojo vardo, susisiekite su administratoriumi.

Naudotojų vardams be susieto el. pašto adreso slaptažodžio nustatymo iš naujo nuoroda el. paštu nebus siunčiama. ', + 'google_login' => 'Prisijungti su Google Workspace', + 'google_login_failed' => 'Prisijungimas su „Google Login“ nepavyko, bandykite dar kartą.', ]; diff --git a/resources/lang/lt-LT/auth/message.php b/resources/lang/lt-LT/auth/message.php index 519e110c2..0f38ddf96 100644 --- a/resources/lang/lt-LT/auth/message.php +++ b/resources/lang/lt-LT/auth/message.php @@ -2,43 +2,43 @@ return array( - 'account_already_exists' => 'Paskyra su šiuo el. paštu jau yra sukurta.', + 'account_already_exists' => 'Paskyra su šiuo el. pašto adresu jau yra.', 'account_not_found' => 'Naudotojo vardas arba slaptažodis neteisingas.', - 'account_not_activated' => 'Šio naudotojo paskyra nėra aktyvuota.', - 'account_suspended' => 'Šio naudotojo paskyra užšaldyta.', - 'account_banned' => 'Šio vartojo paskyra užblokuota.', - 'throttle' => 'Per daug bandymų prisijungti nepavyko. Prašome pabandyti dar kartą už :minutes minučių.', + 'account_not_activated' => 'Šio naudotojo paskyra nesuaktyvinta.', + 'account_suspended' => 'Šio naudotojo paskyra yra išjungta.', + 'account_banned' => 'Šio naudotojo paskyra yra užblokuota.', + 'throttle' => 'Per daug nesėkmingų bandymų prisijungti. Bandykite dar kartą po :minutes minučių.', 'two_factor' => array( - 'already_enrolled' => 'Jūsų įrenginys jau įtrauktas.', + 'already_enrolled' => 'Jūsų įrenginys jau yra įtrauktas.', 'success' => 'Jūs sėkmingai prisijungėte.', 'code_required' => 'Dviejų faktorių kodas yra privalomas.', 'invalid_code' => 'Dviejų faktorių kodas neteisingas.', ), 'signin' => array( - 'error' => 'Iškilo problema bandant prisijungti, prašome bandykite dar kartą.', - 'success' => 'Jūs sėkmingai prisijungėte.', + 'error' => 'Bandant prisijungti įvyko klaida, bandykite dar kartą.', + 'success' => 'Jūs prisijungėte sėkmingai.', ), 'logout' => array( - 'error' => 'Iškilo problema bandant atsijungti, prašome bandykite dar kartą.', - 'success' => 'Jūs sėkmingai atsijungėte.', + 'error' => 'Bandant atsijungti įvyko klaida, bandykite dar kartą.', + 'success' => 'Jūs atsijungėte sėkmingai.', ), 'signup' => array( - 'error' => 'Siekiant suskurti jūsų paskyrą iškilo problema. Prašome bandykite dar kartą.', - 'success' => 'Paskyra sėkmingai sukurta.', + 'error' => 'Bandant sukurti paskyrą įvyko klaidą, bandykite dar kartą.', + 'success' => 'Paskyra sukurta sėkmingai.', ), 'forgot-password' => array( - 'error' => 'Iškilo sunkumų siekiant gauti slaptažodžio atnaujinimo kodą. Prašome bandykite dar kartą.', - 'success' => 'Jei sistemoje yra atitinkantis el. pašto adresas, bus išsiųstas slaptažodžio atkūrimo el. laiškas.', + 'error' => 'Bandant gauti slaptažodžio nustatymo iš naujo kodą įvyko klaidą, bandykite dar kartą.', + 'success' => 'Jei toks el. pašto adresas yra mūsų sistemoje, į jį buvo išsiųstas laiškas slaptažodžio nustatymui iš naujo.', ), 'forgot-password-confirm' => array( - 'error' => 'Iškilo sunkumų siekiant pakeisti jūsų slaptažodį. Prašome bandykite dar kartą.', - 'success' => 'Jūsų slaptaždis sėkmingai atnaujintas.', + 'error' => 'Bandant pakeisti slaptažodį įvyko klaidą, bandykite dar kartą.', + 'success' => 'Jūsų slaptaždis buvo pakeistas sėkmingai.', ), diff --git a/resources/lang/lt-LT/button.php b/resources/lang/lt-LT/button.php index ff45cbc1a..953062939 100644 --- a/resources/lang/lt-LT/button.php +++ b/resources/lang/lt-LT/button.php @@ -4,21 +4,21 @@ return [ 'actions' => 'Veiksmai', 'add' => 'Pridėti naują', 'cancel' => 'Atšaukti', - 'checkin_and_delete' => 'Checkin All / Delete User', - 'delete' => 'Ištrinti', - 'edit' => 'Keisti', - 'restore' => 'Atstatyti', + 'checkin_and_delete' => 'Paimti viską / Panaikinti naudotoją', + 'delete' => 'Panaikinti', + 'edit' => 'Redaguoti', + 'restore' => 'Atkurti', 'remove' => 'Pašalinti', - 'request' => 'Užklausti', + 'request' => 'Užsakyti', 'submit' => 'Išsaugoti', 'upload' => 'Įkelti', 'select_file' => 'Pasirinkite failą ...', - 'select_files' => 'Pasirinkite failą...', - 'generate_labels' => '{1} Generate Label|[2,*] Generate Labels', - 'send_password_link' => 'Slaptažodžio atkūrimo nuoroda', - 'go' => 'Go', + 'select_files' => 'Pasirinkite failus...', + 'generate_labels' => '{1} Generuoti etiketę|[2,*] Generuoti etiketes', + 'send_password_link' => 'Slaptažodžio nustatymo iš naujo nuoroda', + 'go' => 'Vykdyti', 'bulk_actions' => 'Masiniai veiksmai', - 'add_maintenance' => 'Add Maintenance', - 'append' => 'Append', + 'add_maintenance' => 'Pridėti įrangos aptarnavimą', + 'append' => 'Papildyti', 'new' => 'Naujas', ]; diff --git a/resources/lang/lt-LT/general.php b/resources/lang/lt-LT/general.php index 8b2176b25..7ceb6fcc0 100644 --- a/resources/lang/lt-LT/general.php +++ b/resources/lang/lt-LT/general.php @@ -24,8 +24,8 @@ return [ 'asset_model' => 'Modelis', 'asset' => 'Įranga', 'asset_report' => 'Įrangos ataskaita', - 'asset_tag' => 'Įrangos žyma', - 'asset_tags' => 'Įrangos žymos', + 'asset_tag' => 'Inventorinis numeris', + 'asset_tags' => 'Inventoriniai numeriai', 'assets_available' => 'Turima įranga', 'accept_assets' => 'Priimti įrangą :name', 'accept_assets_menu' => 'Priimti įrangą', @@ -47,7 +47,7 @@ return [ 'bulkaudit_status' => 'Audito būsena', 'bulk_checkout' => 'Išduoti kelis', 'bulk_edit' => 'Redaguoti kelis', - 'bulk_delete' => 'Ištrinti kelis', + 'bulk_delete' => 'Panaikinti kelis', 'bulk_actions' => 'Masiniai veiksmai', 'bulk_checkin_delete' => 'Masinis paėmimas / Naudotojų panaikinimas', 'byod' => 'Naudotojų asmeninė įranga (BYOD)', @@ -111,7 +111,7 @@ return [ 'details' => 'Detaliau', 'download' => 'Atsisiųsti', 'download_all' => 'Atsisųsti visus', - 'editprofile' => 'Koreguoti profilį', + 'editprofile' => 'Redaguoti savo profilį', 'eol' => 'Nurašymo data', 'email_domain' => 'El. pašto domenas', 'email_format' => 'El. pašto formatas', @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Pavardė, Vardo pirmoji raidė (pavarde_v@example.com)', 'firstinitial.lastname' => 'V. Pavardė (v.pavarde@example.com)', 'firstnamelastinitial' => 'Vardas, Pavardės pirmoji raidė (vardasp@example.com)', + 'lastnamefirstname' => 'Pavardė, Vardas (pavardenis.vardenis@example.com)', 'first_name' => 'Vardas', 'first_name_format' => 'Vardas (vardas@example.com)', 'files' => 'Failai', @@ -190,7 +191,7 @@ return [ 'locations' => 'Vietos', 'logo_size' => '"Logotipas + tekstas" tipui labiausiai tinka kvadratiniai logotipai. Didžiausias logotipo rodymo dydis yra 50 pikselių aukščio ir 500 pikselių pločio. ', 'logout' => 'Atsijungti', - 'lookup_by_tag' => 'Paieška pagal įrangos žymą', + 'lookup_by_tag' => 'Paieška pagal inventorinį numerį', 'maintenances' => 'Aptarnavimai', 'manage_api_keys' => 'Tvarkyti API raktus', 'manufacturer' => 'Gamintojas', @@ -218,7 +219,7 @@ return [ 'only_deleted' => 'Tik panaikinta įranga', 'page_menu' => 'Rodomi _MENU_ elementai', 'pagination_info' => 'Rodomi nuo _START_ iki _END_ iš _TOTAL_ vienetų', - 'pending' => 'Vykdoma', + 'pending' => 'Ruošiama', 'people' => 'Žmonės', 'per_page' => 'Rezultatų puslapyje', 'previous' => 'Ankstesnis', @@ -239,7 +240,7 @@ return [ 'restored' => 'atkurta', 'restore' => 'Atkurti', 'requestable_models' => 'Užsakomi modeliai', - 'requested' => 'Užklausta', + 'requested' => 'Užsakyta', 'requested_date' => 'Prašymo data', 'requested_assets' => 'Prašoma įranga', 'requested_assets_menu' => 'Prašoma įranga', @@ -255,7 +256,7 @@ return [ 'select_datasource' => 'Pasirinkite duomenų šaltinį', 'select_department' => 'Pasirinkite skyrių', 'select_depreciation' => 'Pasirinkite nusidėvėjimo būdą', - 'select_location' => 'Pasirinkite vietovę', + 'select_location' => 'Pasirinkite vietą', 'select_manufacturer' => 'Pasirinkite gamintoją', 'select_model' => 'Pasirinkite modelį', 'select_supplier' => 'Pasirinkite tiekėją', @@ -409,15 +410,15 @@ return [ 'maintenance_mode' => 'Paslauga laikinai nepasiekiama dėl sistemos naujinimo. Bandykite dar kartą vėliau.', 'maintenance_mode_title' => 'Sistema laikinai nepasiekiama', 'ldap_import' => 'Vartotojo slaptažodis neturėtų būti valdomas LDAP. (Tai leidžia siųsti užklausas dėl pamiršto slaptažodžio.)', - 'purge_not_allowed' => 'Ištrintų duomenų valymas .env faile yra išjungtas. Susisiekite su palaikymo tarnyba arba savo sistemos administratoriumi.', + 'purge_not_allowed' => 'Panaikintų duomenų valymas .env faile yra išjungtas. Susisiekite su palaikymo tarnyba arba savo sistemos administratoriumi.', 'backup_delete_not_allowed' => 'Atsarginių kopijų trynimas .env faile yra išjungtas. Susisiekite su palaikymo tarnyba arba savo sistemos administratoriumi.', 'additional_files' => 'Papildomi failai', 'shitty_browser' => 'Neaptiktas joks parašas. Jei naudojate senesnę naršyklę, naudokite modernesnę naršyklę, kad užbaigtumėte turto priėmimą.', 'bulk_soft_delete' =>'Taip pat, panaikinti šiuos naudotojus. Jų turto istorija išliks nepakitusi, kol neišvalysite ištrintų įrašų administratoriaus nustatymuose.', - 'bulk_checkin_delete_success' => 'Jūsų pasirinkti naudotojai buvo ištrinti, o jų elementai buvo paimti.', + 'bulk_checkin_delete_success' => 'Jūsų pasirinkti naudotojai buvo panaikinti, o jų elementai buvo paimti.', 'bulk_checkin_success' => 'Nurodytų naudotojų elementai buvo paimti.', - 'set_to_null' => 'Ištrinti šios įrangos reikšmes|Ištrinti visų :asset_count įrangų reikšmes ', - 'set_users_field_to_null' => 'Ištrinti :field reikšmes šiam naudotojui|Ištrinti :field reikšmes visiems :user_count naudotojams ', + 'set_to_null' => 'Išvalyti šios įrangos reikšmes|Išvalyti visų :asset_count įrangų reikšmes ', + 'set_users_field_to_null' => 'Išvalyti :field reikšmes šiam naudotojui|Išvalyti :field reikšmes visiems :user_count naudotojams ', 'na_no_purchase_date' => 'N/D - Nenurodyta įsigijimo data', 'assets_by_status' => 'Įranga pagal būseną', 'assets_by_status_type' => 'Įranga pagal būsenos tipą', @@ -451,8 +452,8 @@ return [ 'merged_log_this_user_from' => 'Naudotojo ID :from_id (:from_username) buvo prijungtas prie šio naudotojo (ID :to_id - :to_username)', 'clear_and_save' => 'Išvalyti ir išsaugoti', 'update_existing_values' => 'Atnaujinti esamas reikšmes?', - 'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Automatiškai didėjančių įrangos žymų generavimas yra išjungtas, todėl visose eilutėse turi būti užpildytas laukelis „Įrangos žyma“.', - 'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Pastaba: įjungtas automatiškai didėjančių įrangos žymų generavimas, todėl eilutėms, kuriose nėra užpildyta „Įrangos žyma“, bus sukurta nauja įranga. Eilutės, kuriose yra užpildyta „Įrangos žyma“, bus atnaujintos pateikta informacija.', + 'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Automatiškai didėjančių inventorinių numerių generavimas yra išjungtas, todėl visose eilutėse, laukas „Inventorinis numeris“ privalo būti užpildytas.', + 'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Pastaba: įjungtas automatiškai didėjančių inventorinių numerių generavimas, todėl eilutėms, kuriose nėra užpildytas laukas „Inventorinis numeris“, bus sukurta nauja įranga. Eilutėse, kuriose laukas „Inventorinis numeris“ yra užpildytas, bus atnaujinta pateikta informacija.', 'send_welcome_email_to_users' => ' Siųsti sveikinimo laišką naujiems naudotojams?', 'send_email' => 'Siųsti laišką', 'call' => 'Skambinti numeriu', @@ -490,7 +491,7 @@ return [ 'checked_out_to_last_name' => 'Išduota: pavardė', 'checked_out_to_username' => 'Išduota: prisijungimo vardas', 'checked_out_to_email' => 'Išduota: el. paštas', - 'checked_out_to_tag' => 'Išduota: įrangos žyma', + 'checked_out_to_tag' => 'Išduota: inventorinis numeris', 'manager_first_name' => 'Vadovo vardas', 'manager_last_name' => 'Vadovo pavardė', 'manager_full_name' => 'Vadovo vardas ir pavardė', @@ -501,7 +502,7 @@ return [ 'do_not_import' => 'Neimportuoti', 'vip' => 'VIP', 'avatar' => 'Avataras', - 'gravatar' => 'Gravataro el. paštas', + 'gravatar' => 'Gravatar el. paštas', 'currency' => 'Valiuta', 'address2' => 'Antroji adreso eilutė', 'import_note' => 'Importuota naudojantis csv importo įrankiu', diff --git a/resources/lang/lt-LT/help.php b/resources/lang/lt-LT/help.php index beed11e51..f4a903930 100644 --- a/resources/lang/lt-LT/help.php +++ b/resources/lang/lt-LT/help.php @@ -15,21 +15,21 @@ return [ 'more_info_title' => 'Detaliau', - 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', + 'audit_help' => 'Pažymėjus šį langelį, įrangos įrašas bus atnaujintas, kad atspindėtų šią naują vietą. Jei paliksite jį nepažymėtą, vieta bus pažymėta tik audito žurnale.

Atkreipkite dėmesį, kad jei ši įranga bus išduota, tai nepakeis asmens, įrangos ar vietos, kuriems išduodama įranga, buvimo vietos.', - 'assets' => 'Turtas - tai daiktai, kurie stebimi serijos numeriu arba turinio žyma. Jie dažniausiai būna vertingesni dalykai, kai svarbu nustatyti konkretų elementą.', + 'assets' => 'Įranga, tai turtas, kurį galima sekti pagal serijos ar inventoriaus numerį. Įprastai, tai yra didesnės vertės daiktai, kurių individualus identifikavimas yra svarbus.', - 'categories' => 'Kategorijos padeda jums tvarkyti savo daiktus. Kai kurių pavyzdžių kategorijos gali būti "Desktops", "Laptops", "Mobilieji telefonai", "Tablets" ir tt, bet jūs galite naudoti kategorijas bet kokiu būdu, kuris jums yra naudingas.', + 'categories' => 'Kategorijos padeda tvarkyti elementus. Pavyzdžiui, gali būti tokios kategorijos: „Staliniai kompiuteriai“, „Nešiojamieji kompiuteriai“, „Mobilieji telefonai“, „Planšetiniai kompiuteriai“ ir pan., bet kategorijas galite naudoti bet kokiu jums patogiu būdu.', - 'accessories' => 'Įranga yra viskas, kas yra išduodama naudotojams ir suteikiamas ar nesuteikiamas inventorizacinis numeris. Pvz. kompiuteris, kompiuterio pelė, programinė iranga ir t. t.', + 'accessories' => 'Priedai – viskas, ką išduodate naudotojams, bet be serijinio numerio (arba jums nėra aktualu šiuos daiktus sekti individualiai). Pavyzdžiui, kompiuterių pelės ar klaviatūros.', - 'companies' => 'Įmonės gali būti naudojamos kaip paprastas identifikatoriaus laukas arba gali būti naudojami norint apriboti turto, naudotojų ir tt matomumą, jei jūsų administratoriaus nustatymuose yra įjungta visa įmonės parama.', + 'companies' => 'Galite naudoti įmones kaip paprastą informacinį lauką arba siekdami apriboti įrangos, naudotojų ir pan. matomumą, Administratoriaus nustatymuose įjungę „Pilną kelių įmonių palaikymą“.', - 'components' => 'Komponentai yra daiktai, kurie yra įrangos sudedamoji dalis, pavyzdžiui HDD, RAM ir t. t.', + 'components' => 'Komponentai yra įrangos sudedamosios dalys, pvz., HDD/SSD diskai, RAM atminties moduliai ir kt.', - 'consumables' => 'Suvartojama įranga, tai tokia įranga, kuri perkama ir suvartojama per tam tikrą laiką. Pvz. spausdintuvo kasetės ar popierius.', + 'consumables' => 'Eksploatacinės medžiagos – viskas, kas įsigyta ir laikui bėgant bus sunaudota. Pavyzdžiui, spausdintuvo rašalas arba kopijavimo popierius.', - 'depreciations' => 'Jūs galite nustatyti irangos nusidėvėjimą naudodami proporcinio metodo nusidėvėjimą.', + 'depreciations' => 'Jūs galite nustatyti įrangos nusidėvėjimą pagal tiesinį nusidėvėjimo modelį.', 'empty_file' => 'Importavimo vedlys aptiko, kad šis failas yra tuščias.' ]; diff --git a/resources/lang/lt-LT/localizations.php b/resources/lang/lt-LT/localizations.php index f1232dd13..8b54054bf 100644 --- a/resources/lang/lt-LT/localizations.php +++ b/resources/lang/lt-LT/localizations.php @@ -2,320 +2,320 @@ return [ - 'select_language' => 'Select a language', + 'select_language' => 'Pasirinkite kalbą', 'languages' => [ - 'en-US'=> 'English, US', - 'en-GB'=> 'English, UK', - 'am-ET' => 'Amharic', - 'af-ZA'=> 'Afrikaans', - 'ar-SA'=> 'Arabic', - 'bg-BG'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'ca-ES' => 'Catalan', - 'hr-HR'=> 'Croatian', - 'cs-CZ'=> 'Czech', - 'da-DK'=> 'Danish', - 'nl-NL'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et-EE'=> 'Estonian', - 'fil-PH'=> 'Filipino', - 'fi-FI'=> 'Finnish', - 'fr-FR'=> 'French', - 'de-DE'=> 'German', - 'de-if'=> 'German (Informal)', - 'el-GR'=> 'Greek', - 'he-IL'=> 'Hebrew', - 'hu-HU'=> 'Hungarian', - 'is-IS' => 'Icelandic', - 'id-ID'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it-IT'=> 'Italian', - 'ja-JP'=> 'Japanese', - 'km-KH'=>'Khmer', - 'ko-KR'=> 'Korean', - 'lt-LT'=>'Lithuanian', - 'lv-LV'=> 'Latvian', - 'mk-MK'=> 'Macedonian', - 'ms-MY'=> 'Malay', - 'mi-NZ'=> 'Maori', - 'mn-MN'=> 'Mongolian', - 'no-NO'=> 'Norwegian', - 'fa-IR'=> 'Persian', - 'pl-PL'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro-RO'=> 'Romanian', - 'ru-RU'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sk-SK'=> 'Slovak', - 'sl-SI'=> 'Slovenian', - 'so-SO'=> 'Somali', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl-PH'=> 'Tagalog', - 'ta-IN'=> 'Tamil', - 'th-TH'=> 'Thai', - 'tr-TR'=> 'Turkish', - 'uk-UA'=> 'Ukranian', - 'vi-VN'=> 'Vietnamese', - 'cy-GB'=> 'Welsh', - 'zu-ZA'=> 'Zulu', + 'en-US'=> 'Anglų, JAV', + 'en-GB'=> 'Anglų, Jungtinė Karalystė', + 'am-ET' => 'Amharų', + 'af-ZA'=> 'Afrikanų', + 'ar-SA'=> 'Arabų', + 'bg-BG'=> 'Bulgarų', + 'zh-CN'=> 'Kinų (supaprastinta)', + 'zh-TW'=> 'Kinų (tradicinė)', + 'ca-ES' => 'Katalonų', + 'hr-HR'=> 'Kroatų', + 'cs-CZ'=> 'Čekų', + 'da-DK'=> 'Danų', + 'nl-NL'=> 'Olandų', + 'en-ID'=> 'Anglų, Indonezija', + 'et-EE'=> 'Estų', + 'fil-PH'=> 'Filipiniečių', + 'fi-FI'=> 'Suomių', + 'fr-FR'=> 'Prancūzų', + 'de-DE'=> 'Vokiečių', + 'de-if'=> 'Vokiečių (neformali)', + 'el-GR'=> 'Graikų', + 'he-IL'=> 'Hebrajų', + 'hu-HU'=> 'Vengrų', + 'is-IS' => 'Islandų', + 'id-ID'=> 'Indoneziečių', + 'ga-IE'=> 'Airių', + 'it-IT'=> 'Italų', + 'ja-JP'=> 'Japonų', + 'km-KH'=>'Khmerų', + 'ko-KR'=> 'Korėjiečių', + 'lt-LT'=>'Lietuvių', + 'lv-LV'=> 'Latvių', + 'mk-MK'=> 'Makedonų', + 'ms-MY'=> 'Malajų', + 'mi-NZ'=> 'Maorių', + 'mn-MN'=> 'Mongolų', + 'no-NO'=> 'Norvegų', + 'fa-IR'=> 'Persų', + 'pl-PL'=> 'Lenkų', + 'pt-PT'=> 'Portugalų', + 'pt-BR'=> 'Portugalų, brazilų', + 'ro-RO'=> 'Rumunų', + 'ru-RU'=> 'Rusų', + 'sr-CS' => 'Serbų (lotynų)', + 'sk-SK'=> 'Slovakų', + 'sl-SI'=> 'Slovėnų', + 'so-SO'=> 'Somalių', + 'es-ES'=> 'Ispanų', + 'es-CO'=> 'Ispanų, Kolumbija', + 'es-MX'=> 'Ispanų, Meksika', + 'es-VE'=> 'Ispanų, Venesuela', + 'sv-SE'=> 'Švedų', + 'tl-PH'=> 'Tagalogų', + 'ta-IN'=> 'Tamilų', + 'th-TH'=> 'Tailandiečių', + 'tr-TR'=> 'Turkų', + 'uk-UA'=> 'Ukrainiečių', + 'vi-VN'=> 'Vietnamiečių', + 'cy-GB'=> 'Valų', + 'zu-ZA'=> 'Zulų', ], - 'select_country' => 'Select a country', + 'select_country' => 'Pasirinkite šalį', 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', + 'AC'=>'Dangun Žengimo sala', + 'AD'=>'Andora', + 'AE'=>'Jungtiniai Arabų Emyratai', + 'AF'=>'Afganistanas', + 'AG'=>'Antigva ir Barbuda', + 'AI'=>'Angilija', + 'AL'=>'Albanija', + 'AM'=>'Armėnija', + 'AN'=>'Nyderlandų Antilai', 'AO'=>'Angola', - 'AQ'=>'Antarctica', + 'AQ'=>'Antarktida', 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', + 'AS'=>'Amerikos Samoa', + 'AT'=>'Austrija', + 'AU'=>'Australija', 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', + 'AX'=>'Alandai', + 'AZ'=>'Azerbaidžanas', + 'BA'=>'Bosnija ir Hercogovina', + 'BB'=>'Barbadosas', + 'BE'=>'Belgija', + 'BD'=>'Bangladešas', + 'BF'=>'Burkina Fasas', + 'BG'=>'Bulgarija', + 'BH'=>'Bahreinas', + 'BI'=>'Burundis', + 'BJ'=>'Beninas', + 'BM'=>'Bermudai', + 'BN'=>'Brunėjaus Valstybės Darusalamas', + 'BO'=>'Bolivija', + 'BR'=>'Brazilija', + 'BS'=>'Bahamos', + 'BT'=>'Butanas', + 'BV'=>'Buvė sala', + 'BW'=>'Botsvana', + 'BY'=>'Baltarusija', + 'BZ'=>'Belizas', + 'CA'=>'Kanada', + 'CC'=>'Kokosų (Kilingo) salos', + 'CD'=>'Kongo Demokratinė Respublika', + 'CF'=>'Centrinės Afrikos Respublika', + 'CG'=>'Kongo Respublika', + 'CH'=>'Šveicarija', + 'CI'=>'Dramblio Kaulo Krantas', + 'CK'=>'Kuko salos', + 'CL'=>'Čilė', + 'CM'=>'Kamerūnas', + 'CN'=>'Kinija', + 'CO'=>'Kolumbija', + 'CR'=>'Kosta Rika', + 'CU'=>'Kuba', + 'CV'=>'Žaliasis Kyšulys', + 'CX'=>'Kalėdų sala', + 'CY'=>'Kipras', + 'CZ'=>'Čekija', + 'DE'=>'Vokietija', + 'DJ'=>'Džibutis', + 'DK'=>'Danija', + 'DM'=>'Dominika', + 'DO'=>'Dominikos Respublika', + 'DZ'=>'Alžyras', + 'EC'=>'Ekvadoras', + 'EE'=>'Estija', + 'EG'=>'Egiptas', + 'ER'=>'Eritrėja', + 'ES'=>'Ispanija', + 'ET'=>'Etiopija', + 'EU'=>'Europos Sąjunga', + 'FI'=>'Suomija', + 'FJ'=>'Fidžis', + 'FK'=>'Folklando (Malvinų) salos', + 'FM'=>'Mikronezijos Federacinės Valstijos', + 'FO'=>'Farerai', + 'FR'=>'Prancūzija', + 'GA'=>'Gabonas', 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', + 'GE'=>'Sakartvelas', + 'GF'=>'Prancūzijos Gviana', + 'GG'=>'Gernsis', + 'GH'=>'Gana', + 'GI'=>'Gibraltaras', + 'GL'=>'Grenlandija', + 'GM'=>'Gambija', + 'GN'=>'Gvinėja', + 'GP'=>'Gvadelupa', + 'GQ'=>'Pusiaujo Gvinėja', + 'GR'=>'Graikija', + 'GS'=>'Pietų Džordžijos ir Pietų Sandvičo salos', + 'GT'=>'Gvatemala', + 'GU'=>'Guamas', + 'GW'=>'Bisau Gvinėja', + 'GY'=>'Gajana', + 'HK'=>'Honkongas', + 'HM'=>'Herdo ir Makdonaldo salos', + 'HN'=>'Hondūras', + 'HR'=>'Kroatija', + 'HT'=>'Haitis', + 'HU'=>'Vengrija', + 'ID'=>'Indonezija', + 'IE'=>'Airija', + 'IL'=>'Izraelis', + 'IM'=>'Meno sala', + 'IN'=>'Indija', + 'IO'=>'Indijos Vandenyno Britų Sritis', + 'IQ'=>'Irakas', + 'IR'=>'Iranas', + 'IS'=>'Islandija', + 'IT'=>'Italija', + 'JE'=>'Džersis', + 'JM'=>'Jamaika', + 'JO'=>'Jordanija', + 'JP'=>'Japonija', + 'KE'=>'Kenija', + 'KG'=>'Kirgizija', + 'KH'=>'Kambodža', + 'KI'=>'Kiribatis', + 'KM'=>'Komorai', + 'KN'=>'Sent Kitsas ir Nevis', + 'KR'=>'Korėja', + 'KW'=>'Kuveitas', + 'KY'=>'Kaimanų salos', + 'KZ'=>'Kazachstanas', + 'LA'=>'Laosas', + 'LB'=>'Libanas', + 'LC'=>'Sent Lusija', + 'LI'=>'Lichtenšteinas', + 'LK'=>'Šri Lanka', + 'LR'=>'Liberija', + 'LS'=>'Lesotas', + 'LT'=>'Lietuva', + 'LU'=>'Liuksemburgas', + 'LV'=>'Latvija', + 'LY'=>'Libija', + 'MA'=>'Marokas', + 'MC'=>'Monakas', + 'MD'=>'Moldova', + 'ME'=>'Juodkalnija', + 'MG'=>'Madagaskaras', + 'MH'=>'Maršalo salos', + 'MK'=>'Šiaurės Makedonija', + 'ML'=>'Malis', + 'MM'=>'Mianmaras', + 'MN'=>'Mongolija', + 'MO'=>'Makao', + 'MP'=>'Marianos Šiaurinės salos', + 'MQ'=>'Martinika', + 'MR'=>'Mauritanija', + 'MS'=>'Montseratas', 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', + 'MU'=>'Mauricijus', + 'MV'=>'Maldyvai', + 'MW'=>'Malavis', + 'MX'=>'Meksika', + 'MY'=>'Malaizija', + 'MZ'=>'Mozambikas', + 'NA'=>'Namibija', + 'NC'=>'Naujoji Kaledonija', + 'NE'=>'Nigeris', + 'NF'=>'Norfolko sala', + 'NG'=>'Nigerija', + 'NI'=>'Nikaragva', + 'NL'=>'Nyderlandai', + 'NO'=>'Norvegija', + 'NP'=>'Nepalas', 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', + 'NU'=>'Niujė', + 'NZ'=>'Naujoji Zelandija', + 'OM'=>'Omanas', 'PA'=>'Panama', 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', + 'PF'=>'Prancūzijos Polinezija', + 'PG'=>'Papua Naujoji Gvinėja', + 'PH'=>'Filipinai', + 'PK'=>'Pakistanas', + 'PL'=>'Lenkija', + 'PM'=>'Sen Pjeras ir Mikelonas', + 'PN'=>'Pitkerno salos', + 'PR'=>'Puerto Rikas', + 'PS'=>'Palestina', + 'PT'=>'Portugalija', 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', + 'PY'=>'Paragvajus', + 'QA'=>'Kataras', + 'RE'=>'Reunjonas', + 'RO'=>'Rumunija', + 'RS'=>'Serbija', + 'RU'=>'Rusija', + 'RW'=>'Ruanda', + 'SA'=>'Saudo Arabija', + 'UK'=>'Škotija', + 'SB'=>'Saliamono salos', + 'SC'=>'Seišeliai', + 'SS'=>'Pietų Sudanas', + 'SD'=>'Sudanas', + 'SE'=>'Švedija', + 'SG'=>'Singapūras', + 'SH'=>'Šv. Elenos sala', + 'SI'=>'Slovėnija', + 'SJ'=>'Svaldbardo ir Jan Majeno salos', + 'SK'=>'Slovakija', + 'SL'=>'Siera Leonė', + 'SM'=>'San Marinas', + 'SN'=>'Senegalas', + 'SO'=>'Somalis', + 'SR'=>'Surinamas', + 'ST'=>'San Tomė ir Prinsipė', + 'SU'=>'Sovietų Sąjunga', + 'SV'=>'Salvadoras', + 'SY'=>'Sirija', + 'SZ'=>'Svazilandas', + 'TC'=>'Terksas ir Kaikosas', + 'TD'=>'Čadas', + 'TF'=>'Prancūzijos Pietų Sritys', + 'TG'=>'Togas', + 'TH'=>'Tailandas', + 'TJ'=>'Tadžikija', 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', + 'TI'=>'Rytų Timoras', + 'TM'=>'Turkmėnija', + 'TN'=>'Tunisas', 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', + 'TP'=>'Rytų Timoras (senas kodas)', + 'TR'=>'Turkija', + 'TT'=>'Trinidadas ir Tobagas', 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', + 'TW'=>'Taivanas', + 'TZ'=>'Tanzanija', + 'UA'=>'Ukraina', 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', + 'UK'=>'Jungtinė Karalystė', + 'US'=>'Jungtinės Amerikos Valstijos', + 'UM'=>'Jungtinių Valstijų mažosios tolimosios salos', + 'UY'=>'Urugvajus', + 'UZ'=>'Uzbekistanas', + 'VA'=>'Vatikanas', + 'VC'=>'Sent Vinsentas ir Grenadinai', + 'VE'=>'Venesuela', + 'VG'=>'Mergelių salos (Didžioji Britanija)', + 'VI'=>'Mergelių salos (JAV)', + 'VN'=>'Vietnamas', 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', + 'WF'=>'Voliso ir Futūnos salos', 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', + 'YE'=>'Jemenas', + 'YT'=>'Majotas', + 'ZA'=>'Pietų Afrika', + 'ZM'=>'Zambija', + 'ZW'=>'Zimbabvė', ], ]; \ No newline at end of file diff --git a/resources/lang/lt-LT/mail.php b/resources/lang/lt-LT/mail.php index ffb91c124..e29e198e3 100644 --- a/resources/lang/lt-LT/mail.php +++ b/resources/lang/lt-LT/mail.php @@ -2,92 +2,92 @@ return [ - 'Accessory_Checkin_Notification' => 'Accessory checked in', - 'Accessory_Checkout_Notification' => 'Accessory checked out', - 'Asset_Checkin_Notification' => 'Asset checked in', - 'Asset_Checkout_Notification' => 'Asset checked out', - 'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation', - 'Confirm_Asset_Checkin' => 'Asset checkin confirmation', - 'Confirm_accessory_delivery' => 'Accessory delivery confirmation', + 'Accessory_Checkin_Notification' => 'Priedas paimtas', + 'Accessory_Checkout_Notification' => 'Priedas išduotas', + 'Asset_Checkin_Notification' => 'Įranga paimta', + 'Asset_Checkout_Notification' => 'Įranga išduota', + 'Confirm_Accessory_Checkin' => 'Priedo paėmimo patvirtinimas', + 'Confirm_Asset_Checkin' => 'Įrangos paėmimo patvirtinimas', + 'Confirm_accessory_delivery' => 'Priedo pristatymo patvirtinimas', 'Confirm_asset_delivery' => 'Įrangos pristatymo patvirtinimas', - 'Confirm_consumable_delivery' => 'Consumable delivery confirmation', - 'Confirm_license_delivery' => 'License delivery confirmation', - 'Consumable_checkout_notification' => 'Consumable checked out', + 'Confirm_consumable_delivery' => 'Eksploatacinės medžiagos pristatymo patvirtinimas', + 'Confirm_license_delivery' => 'Licencijos pristatymo patvirtinimas', + 'Consumable_checkout_notification' => 'Eksploatacinė medžiaga išduota', 'Days' => 'Dienos', - 'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date', - 'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching', - 'Expected_Checkin_Report' => 'Expected asset checkin report', - 'Expiring_Assets_Report' => 'Galiojanti turto ataskaita.', - 'Expiring_Licenses_Report' => 'Galiojanti licencijų ataskaita.', - 'Item_Request_Canceled' => 'Prekės užklausa atšaukta', - 'Item_Requested' => 'Įranga užklausta', - 'License_Checkin_Notification' => 'License checked in', - 'License_Checkout_Notification' => 'License checked out', - 'Low_Inventory_Report' => 'Mažos inventorizacijos ataskaita', - 'a_user_canceled' => 'Vartotojas svetainėje atšaukė elemento užklausą', - 'a_user_requested' => 'Vartotojas paprašė elemento svetainėje', - 'acceptance_asset_accepted' => 'A user has accepted an item', - 'acceptance_asset_declined' => 'A user has declined an item', - 'accessory_name' => 'Aksesuaro pavadinimas:', - 'additional_notes' => 'Papildomi komentarai:', - 'admin_has_created' => 'Administratorius sukūrė jums sąskaitą: interneto svetainėje.', + 'Expected_Checkin_Date' => 'Jums yra išduota įranga, kuri bus iš jūsų paimta :date', + 'Expected_Checkin_Notification' => 'Priminimas: artėja :name paėmimo terminas', + 'Expected_Checkin_Report' => 'Numatomos paimti įrangos ataskaita', + 'Expiring_Assets_Report' => 'Bebaigiančios galioti įrangos ataskaita.', + 'Expiring_Licenses_Report' => 'Bebaigiančių galioti licencijų ataskaita.', + 'Item_Request_Canceled' => 'Įrangos užsakymas atšauktas', + 'Item_Requested' => 'Įranga užsakyta', + 'License_Checkin_Notification' => 'Licencija paimta', + 'License_Checkout_Notification' => 'Licencija išduota', + 'Low_Inventory_Report' => 'Ataskaita apie mažas atsargas', + 'a_user_canceled' => 'Naudotojas svetainėje atšaukė įrangos užsakymą', + 'a_user_requested' => 'Naudotojas svetainėje užsakė įrangą', + 'acceptance_asset_accepted' => 'Naudotojas priėmė daiktą', + 'acceptance_asset_declined' => 'Naudotojas nepriėmė daikto', + 'accessory_name' => 'Priedo pavadinimas:', + 'additional_notes' => 'Papildomos pastabos:', + 'admin_has_created' => 'Administratorius sukūrė jums paskyrą :web svetainėje.', 'asset' => 'Įranga:', 'asset_name' => 'Įrangos pavadinimas:', - 'asset_requested' => 'Užklausta įranga', - 'asset_tag' => 'Įrangos kortelė', - 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.', - 'assigned_to' => 'Priskirtas', - 'best_regards' => 'pagarbiai,', + 'asset_requested' => 'Užsakyta įranga', + 'asset_tag' => 'Inventorinis numeris', + 'assets_warrantee_alert' => 'Yra :count įranga, kurios garantija baigiasi per kitas :threshold dienas.|Yra :count įrangos (-ų), kurių garantija baigiasi per kitas :threshold dienas (-ų).', + 'assigned_to' => 'Išduota', + 'best_regards' => 'Pagarbiai,', 'canceled' => 'Atšauktas:', - 'checkin_date' => 'Priėmimo data:', - 'checkout_date' => 'Užsakymo data:', - 'checkedout_from' => 'Checked out from', - 'checkedin_from' => 'Checked in from', - 'checked_into' => 'Checked into', + 'checkin_date' => 'Paėmimo data:', + 'checkout_date' => 'Išdavimo data:', + 'checkedout_from' => 'Išduota iš', + 'checkedin_from' => 'Paimta iš', + 'checked_into' => 'Paimta į', 'click_on_the_link_accessory' => 'Spustelėkite nuorodą apačioje, kad patvirtintumėte, jog gavote priedą.', - 'click_on_the_link_asset' => 'Jei norite patvirtinti, kad gavote turtą, spustelėkite saitą apačioje.', - 'click_to_confirm' => 'Spustelėkite šią nuorodą norėdami patvirtinti savo: interneto paskyra:', + 'click_on_the_link_asset' => 'Spustelėkite nuorodą apačioje, kad patvirtintumėte, jog gavote įrangą.', + 'click_to_confirm' => 'Spustelėkite šią nuorodą, kad patvirtintumėte savo :web paskyrą:', 'current_QTY' => 'Esamas kiekis', 'days' => 'Dienos', - 'expecting_checkin_date' => 'Numatyta priėmimo data:', - 'expires' => 'Galiojimo laikas', + 'expecting_checkin_date' => 'Numatoma paėmimo data:', + 'expires' => 'Baigia galioti', 'hello' => 'Sveiki', 'hi' => 'Sveiki', - 'i_have_read' => 'Aš perskaičiau ir sutinku su naudojimo sąlygomis ir gavau šį elementą.', - 'inventory_report' => 'Inventorizacijos ataskaita', - 'item' => 'Įranga:', - 'license_expiring_alert' => 'Tiek licenzijų :count baigsis už :threshold days.|Tiek licenzijų :count baigsis už :threshold days.', - 'link_to_update_password' => 'Jei norite atnaujinti savo slaptažodį, spustelėkite šią nuorodą:', + 'i_have_read' => 'Aš perskaičiau ir sutinku su naudojimo sąlygomis, ir patvirtinu, kad gavau šį daiktą.', + 'inventory_report' => 'Inventoriaus ataskaita', + 'item' => 'Daiktas:', + 'license_expiring_alert' => 'Yra :count licencija, kuri baigiasi per kitas :threshold dienas.|Yra :count licencijos (-ų), kurios baigiasi per kitas :threshold dienas (-ų).', + 'link_to_update_password' => 'Spustelėkite šią nuorodą, kad atnaujintumėte savo :web slaptažodį:', 'login' => 'Prisijungti:', - 'login_first_admin' => 'Prisijunkite prie savo naujojo "Snipe-IT" diegimo naudodami toliau nurodytus įgaliojimus:', - 'low_inventory_alert' => 'Tai yra reikšmė minimalaus inventoriaus arba greitai pasibaigiančio.:count | Tai yra reikšmė minimalaus inventoriaus arba greitai pasibaigiančio.:count.', - 'min_QTY' => 'Min Kiekis', + 'login_first_admin' => 'Prisijunkite prie savo naujojo „Snipe-IT“ diegimo naudodami žemiau pateiktus prisijungimo duomenis:', + 'low_inventory_alert' => 'Yra :count pozicija, kurios atsargos yra mažesnės (arba greitais bus mažesnės) nei numatytos minimalios atsargos.|Yra :count pozicijų, kurių atsargos yra mažesnės (arba greitais bus mažesnės) nei numatytos minimalios atsargos.', + 'min_QTY' => 'Min. kiekis', 'name' => 'Pavadinimas', - 'new_item_checked' => 'Naujas objektas buvo patikrintas pagal jūsų vardą, išsami informacija pateikiama žemiau.', + 'new_item_checked' => 'Jums buvo priskirtas naujas elementas, išsami informacija pateikta žemiau.', 'notes' => 'Pastabos', 'password' => 'Slaptažodis:', - 'password_reset' => 'Slaptažodžio atstatymas', - 'read_the_terms' => 'Prašome perskaityti toliau pateiktas naudojimo sąlygas.', - 'read_the_terms_and_click' => 'Please read the terms of use below, and click on the link at the bottom to confirm that you read and agree to the terms of use, and have received the asset.', - 'requested' => 'Užklausta:', - 'reset_link' => 'Jūsų slaptažodžio atstatymo nuoroda', - 'reset_password' => 'Paspauskite norėdami pakeisti savo slaptažodį:', + 'password_reset' => 'Slaptažodžio nustatymas iš naujo', + 'read_the_terms' => 'Perskaitykite žemiau pateiktas naudojimo sąlygas.', + 'read_the_terms_and_click' => 'Perskaitykite žemiau pateiktas naudojimo sąlygas ir spustelėti apačioje esančią nuorodą, kad patvirtintumėte jog perskaitėte ir sutinkate su jomis, bei kad gavote įrangą.', + 'requested' => 'Užsakyta:', + 'reset_link' => 'Jūsų slaptažodžio nustatymo iš naujo nuoroda', + 'reset_password' => 'Spustelėkite čia norėdami iš naujo nustatyti slaptažodį:', 'rights_reserved' => 'Visos teisės saugomos.', - 'serial' => 'Serija', - 'snipe_webhook_test' => 'Snipe-IT Integration Test', - 'snipe_webhook_summary' => 'Snipe-IT Integration Test Summary', + 'serial' => 'Serijos numeris', + 'snipe_webhook_test' => 'Snipe-IT integracijos testas', + 'snipe_webhook_summary' => 'Snipe-IT integracijos testo suvestinė', 'supplier' => 'Tiekėjas', - 'tag' => 'Žymė', - 'test_email' => 'Išbandykite "Snipe-IT" el. Laišką', - 'test_mail_text' => 'Tai yra "Snipe-IT Asset Management System" testas. Jei tai gavote, paštas dirba :)', - 'the_following_item' => 'Šis elementas buvo pažymėtas:', - 'to_reset' => 'Jei norite iš naujo nustatyti savo: žiniatinklio slaptažodį, užpildykite šią formą:', + 'tag' => 'Žyma', + 'test_email' => 'Bandomasis laiškas iš „Snipe-IT“', + 'test_mail_text' => 'Tai yra „Snipe-IT“ turto valdymo sistemos testas. Jei tai gavote, vadinasi paštas veikia.', + 'the_following_item' => 'Šis daiktas buvo paimtas: ', + 'to_reset' => 'Norėdami iš naujo nustatyti savo :web slaptažodį, užpildykite šią formą:', 'type' => 'Tipas', - 'upcoming-audits' => 'There is :count asset that is coming up for audit within :threshold days.|There are :count assets that are coming up for audit within :threshold days.', - 'user' => 'Vartotojas', - 'username' => 'Vartotojo vardas', + 'upcoming-audits' => 'Yra :count įranga, kuriai per :threshold dienas (-ų) turi būti atliktas auditas.|Yra :count įrangos (-ų), kurioms per :threshold dienas (-ų) turi būti atliktas auditas.', + 'user' => 'Naudotojas', + 'username' => 'Naudotojo vardas', 'welcome' => 'Sveiki :vardas', - 'welcome_to' => 'Sveiki atvykę į: internetą!', - 'your_assets' => 'Žiūrėti Jūsų įrangą', - 'your_credentials' => 'Jūsų Snipe-IT įgaliojimai', + 'welcome_to' => 'Sveiki apsilankę :web!', + 'your_assets' => 'Peržiūrėti jūsų įrangą', + 'your_credentials' => 'Jūsų „Snipe-IT“ prisijungimo duomenys', ]; diff --git a/resources/lang/lt-LT/passwords.php b/resources/lang/lt-LT/passwords.php index 0eeb786d4..80499fbb5 100644 --- a/resources/lang/lt-LT/passwords.php +++ b/resources/lang/lt-LT/passwords.php @@ -1,9 +1,9 @@ 'Jei mūsų sistemoje yra atitinkantis naudotojas su galiojančiu el. pašto adresu, bus išsiųstas slaptažodžio atkūrimo el. laiškas.', - 'user' => 'Jei mūsų sistemoje yra atitinkantis naudotojas su galiojančiu el. pašto adresu, bus išsiųstas slaptažodžio atkūrimo el. laiškas.', - 'token' => 'Šis slaptažodžio atkūrimo raktas yra netinkamas, pasibaigęs jo galiojimas arba nesutampa su vartotojo vardu.', - 'reset' => 'Jūsų slaptažodis atkurtas!', - 'password_change' => 'Your password has been updated!', + 'sent' => 'Jei mūsų sistemoje yra toks naudotojas su galiojančiu el. pašto adresu, jam buvo išsiųstas laiškas slaptažodžio nustatymui iš naujo.', + 'user' => 'Jei mūsų sistemoje yra toks naudotojas su galiojančiu el. pašto adresu, jam buvo išsiųstas laiškas slaptažodžio nustatymui iš naujo.', + 'token' => 'Šis slaptažodžio nustatymo iš naujo raktas yra netinkamas, pasibaigęs jo galiojimas arba jis nesutampa su nurodytu naudotojo vardu.', + 'reset' => 'Jūsų slaptažodis buvo pakeistas!', + 'password_change' => 'Jūsų slaptažodis buvo atnaujintas!', ]; diff --git a/resources/lang/lt-LT/reminders.php b/resources/lang/lt-LT/reminders.php index 911a62c2a..a8a6c3d6d 100644 --- a/resources/lang/lt-LT/reminders.php +++ b/resources/lang/lt-LT/reminders.php @@ -13,9 +13,9 @@ return array( | */ - "password" => "Slaptažodžiai turi sutapti ir būti iš 6 simbolių.", - "user" => "Neteisingas naudotojas arba el. paštas", - "token" => 'Šis slaptažodžio atkūrimo raktas yra netinkamas, pasibaigęs jo galiojimas arba nesutampa su vartotojo vardu.', - 'sent' => 'Jei sistemoje yra atitinkantis naudotojas su galiojančiu el. pašto adresu, bus išsiųstas slaptažodžio atkūrimo el. laiškas.', + "password" => "Slaptažodį turi sudaryti bent šeši simboliai ir jie turi sutapti.", + "user" => "Neteisingas naudotojo vardas arba el. paštas", + "token" => 'Šis slaptažodžio nustatymo iš naujo raktas yra netinkamas, pasibaigęs jo galiojimas arba jis nesutampa su nurodytu naudotojo vardu.', + 'sent' => 'Jei mūsų sistemoje yra toks naudotojas su galiojančiu el. pašto adresu, jam buvo išsiųstas laiškas slaptažodžio nustatymui iš naujo.', ); diff --git a/resources/lang/lt-LT/table.php b/resources/lang/lt-LT/table.php index 30e2a0575..836e2acf4 100644 --- a/resources/lang/lt-LT/table.php +++ b/resources/lang/lt-LT/table.php @@ -6,6 +6,6 @@ return array( 'action' => 'Veiksmas', 'by' => 'Atlikti', 'item' => 'Įranga', - 'no_matching_records' => 'No matching records found', + 'no_matching_records' => 'Nerasta jokių atitinkančių įrašų', ); diff --git a/resources/lang/lt-LT/validation.php b/resources/lang/lt-LT/validation.php index 644cea938..aa3bcaf69 100644 --- a/resources/lang/lt-LT/validation.php +++ b/resources/lang/lt-LT/validation.php @@ -16,69 +16,69 @@ return [ 'accepted' => ':attribute turi būti patvirtintas.', 'active_url' => ':attribute nėra tinkamas interentinis puslapis.', 'after' => ':attribute privalo būti data po :date.', - 'after_or_equal' => 'Atributas turi būti datos, kuri yra arba lygi: data.', + 'after_or_equal' => ':attribute privalo būti data lygi arba vėlesnė negu :date.', 'alpha' => ':attribute gali būti tik raidės.', 'alpha_dash' => ':attribute gali būti tik raidės, skaičiai ir brūkšneliai.', 'alpha_num' => ':attribute gali būti tik raidės ir skaičiai.', - 'array' => 'Atributas turi būti masyvas.', + 'array' => ':attribute turi būti masyvas.', 'before' => ':attribute turi būti data prieš :date.', - 'before_or_equal' => 'Atributas turi būti data prieš arba lygus: data.', + 'before_or_equal' => ':attribute privalo būti data ankstesnė arba lygi :date.', 'between' => [ 'numeric' => ':attribute privalo būti tarp :min - :max.', 'file' => ':attribute privalo būti tarp :min - :max kilobaitų.', - 'string' => ':attribute privalo būti tarp :min - :max ženklų.', - 'array' => 'Atributas turi būti tarp: min ir: max elementų.', + 'string' => ':attribute privalo būti tarp :min - :max simbolių.', + 'array' => ':attribute turi būti tarp :min ir :max elementų.', ], - 'boolean' => 'Laukas: attribute turi būti teisingas arba klaidingas.', + 'boolean' => ':attribute turi būti „Teisinga“ arba „Klaidinga“.', 'confirmed' => ':attribute patvirtinimas nesutampa.', 'date' => ':attribute nėra galiojanti data.', - 'date_format' => ':attribute nesutampa su formatu :format.', + 'date_format' => ':attribute neatitinka formato :format.', 'different' => ':attribute ir :other turi būti skirtingi.', - 'digits' => ':attribute privalo būti :digits skaičiai.', - 'digits_between' => ':attribute privalo būti tarp :min ir:max skaičių.', - 'dimensions' => 'Atributui yra netinkamų vaizdo matmenų.', - 'distinct' => 'Atributo laukas turi dvigubą reikšmę.', + 'digits' => ':attribute privalo būti :digits skaitmenų.', + 'digits_between' => ':attribute privalo būti tarp :min ir:max skaitmenų.', + 'dimensions' => ':attribute atvaizdo matmenys yra netinkami.', + 'distinct' => ':attribute lauke yra pasikartojanti reikšmė.', 'email' => ':attribute formatas neteisingas.', - 'exists' => 'Pasirinktas :attribute neteisingas.', - 'file' => 'Atributas turi būti failas.', - 'filled' => 'Atributo laukas turi turėti reikšmę.', - 'image' => ':attribute privalo būti paveikslėlis.', - 'import_field_empty' => 'The value for :fieldname cannot be null.', + 'exists' => 'Pasirinktas :attribute yra neteisingas.', + 'file' => ':attribute turi būti failas.', + 'filled' => ':attribute laukas turi turėti reikšmę.', + 'image' => ':attribute privalo būti atvaizdas.', + 'import_field_empty' => ':fieldname reikšmė negali būti tuščia.', 'in' => 'Pasirinktas :attribute neteisingas.', - 'in_array' => 'Atributo laukas neegzistuoja: kitame.', + 'in_array' => 'Lauko :attribute nėra :other.', 'integer' => ':attribute turi būti sveikas skaičius.', 'ip' => ':attribute privalo būti tinkamas IP adresas.', - 'ipv4' => 'Atributas turi būti galiojantis IPv4 adresas.', - 'ipv6' => 'Atributas turi būti galiojantis IPv6 adresas.', - 'is_unique_department' => 'The :attribute must be unique to this Company Location', - 'json' => 'Atributas turi būti galiojantis JSON eilutė.', + 'ipv4' => ':attribute privalo būti tinkamas IPv4 adresas.', + 'ipv6' => ':attribute privalo būti tinkamas IPv6 adresas.', + 'is_unique_department' => ':attribute turi būti unikalus šiai įmonės vietai', + 'json' => ':attribute turi būti tinkama JSON eilutė.', 'max' => [ 'numeric' => ':attribute negali būti didesnis nei :max.', 'file' => ':attribute negali būti didesnis nei :max kilobaitų.', - 'string' => ':attribute negali būti didesnis nei :max ženklai.', - 'array' => 'Atributas gali būti ne daugiau kaip: max elementai.', + 'string' => ':attribute negali būti didesnis nei :max simboliai.', + 'array' => ':attribute negali turėti daugiau nei :max elementų.', ], 'mimes' => ':attribute privalo būti failas, kurio formatas :values.', - 'mimetypes' => 'Atributas turi būti failo tipas:: reikšmės.', + 'mimetypes' => ':attribute turi būti failas, kurio formatas: :values.', 'min' => [ 'numeric' => ':attribute privalo būti ne mažesnis nei :min.', 'file' => ':attribute turi būti bent :min kilobaitų.', - 'string' => ':attribute privalo būti bent :min ženklai.', - 'array' => 'Atributui turi būti bent: min elementai.', + 'string' => ':attribute privalo būti bent :min simbolių.', + 'array' => ':attribute turi turėti bent :min elementų.', ], - 'starts_with' => 'The :attribute must start with one of the following: :values.', - 'ends_with' => 'The :attribute must end with one of the following: :values.', + 'starts_with' => ':attribute turi prasidėti viena iš šių: :values.', + 'ends_with' => ':attribute turi baigtis viena iš šių: :values.', - 'not_in' => 'Pasirinktas :attribute neteisingas.', + 'not_in' => 'Pasirinktas :attribute yra neteisingas.', 'numeric' => ':attribute privalo būti skaičius.', - 'present' => 'Atributo laukas turi būti.', + 'present' => 'Laukas :attribute turi būti pateiktas.', 'valid_regex' => 'Tai nėra tinkamas regex. ', 'regex' => ':attribute formatas neteisingas.', - 'required' => ':attribute laukelis privalomas.', - 'required_if' => ':attribute laukelis yra privalomas kai :other yra :value.', - 'required_unless' => 'Atributo laukas reikalingas, nebent: kitame yra: reikšmės.', - 'required_with' => ':attribute laukelis privalomas kai :values yra nurodytas.', - 'required_with_all' => 'Atributo laukas reikalingas tada, kai yra reikšmės.', + 'required' => ':attribute laukas yra privalomas.', + 'required_if' => ':attribute laukas yra privalomas, kai :other yra :value.', + 'required_unless' => ':attribute laukas yra būtinas, nebent :other yra :values.', + 'required_with' => ':attribute laukas yra privalomas, kai :values yra nurodyta.', + 'required_with_all' => 'Laukas :attribute yra privalomas, kai :values yra nurodyta.', 'required_without' => ':attribute laukelis privalomas kai :values yra nenurodytas.', 'required_without_all' => 'Atributo laukas reikalingas, kai nėra nė vieno iš: vertės.', 'same' => ':attribute ir :other privalo sutapti.', @@ -88,25 +88,25 @@ return [ 'string' => ':attribute privalo būti :size ženklų.', 'array' => 'Atributas turi būti: dydžio elementai.', ], - 'string' => 'Atributas turi būti eilutė.', - 'timezone' => 'Atributas turi būti tinkama zona.', - 'two_column_unique_undeleted' => 'The :attribute must be unique across :table1 and :table2. ', + 'string' => ':attribute turi būti eilutė.', + 'timezone' => ':attribute turi būti tinkama zona.', + 'two_column_unique_undeleted' => ':attribute turi būti unikalus :table1 ir :table2. ', 'unique' => ':attribute jau užimtas.', - 'uploaded' => 'Nepavyko įkelti atributo.', + 'uploaded' => ':attribute įkelti nepavyko.', 'url' => ':attribute formatas neteisingas.', 'unique_undeleted' => ':attribute turi būti unikalus.', - 'non_circular' => 'The :attribute must not create a circular reference.', - 'not_array' => ':attribute cannot be an array.', - 'disallow_same_pwd_as_user_fields' => 'Slaptažodis negali sutapti su vartotojo vardu.', - 'letters' => 'Slaptažodis turi turėti bent vieną raidę.', - 'numbers' => 'Slaptažodis turi turėti bent vieną skaitmenį.', - 'case_diff' => 'Slaptažodis turi turėti didžiųjų ir mažųjų raidžių.', - 'symbols' => 'Slaptažodis turi turėti simbolių.', + 'non_circular' => ':attribute neturi kurti žiedinės nuorodos.', + 'not_array' => ':attribute negali būti masyvas.', + 'disallow_same_pwd_as_user_fields' => 'Slaptažodis negali sutapti su naudotojo vardu.', + 'letters' => 'Slaptažodyje turi būti bent viena raidė.', + 'numbers' => 'Slaptažodyje turi būti bent vienas skaičius.', + 'case_diff' => 'Slaptažodyje turi būti naudojamos didžiosios ir mažosios raidės.', + 'symbols' => 'Slaptažodyje turi būti simbolių.', 'gte' => [ - 'numeric' => 'Value cannot be negative' + 'numeric' => 'Reikšmė negali būti neigiama' ], - 'checkboxes' => ':attribute contains invalid options.', - 'radio_buttons' => ':attribute is invalid.', + 'checkboxes' => ':attribute yra neteisingų parinkčių.', + 'radio_buttons' => ':atributas yra neteisingas.', /* @@ -121,17 +121,17 @@ return [ */ 'custom' => [ - 'alpha_space' => 'Lauke: atributo lauke yra simbolis, kuris nėra leidžiamas.', - 'email_array' => 'Vienas ar keli el. Pašto adresai yra netinkami.', + 'alpha_space' => 'Lauke :attribute yra simbolis, kurio negalima naudoti.', + 'email_array' => 'Vienas ar keli el. pašto adresai yra neteisingi.', 'hashed_pass' => 'Jūsų dabartinis slaptažodis yra neteisingas', 'dumbpwd' => 'Šis slaptažodis yra per dažnas.', - 'statuslabel_type' => 'Turite pasirinkti tinkamą statuso etiketės tipą', + 'statuslabel_type' => 'Turite pasirinkti tinkamą būsenos žymos tipą', // date_format validation with slightly less stupid messages. It duplicates a lot, but it gets the job done :( // We use this because the default error message for date_format is reflects php Y-m-d, which non-PHP // people won't know how to format. 'purchase_date.date_format' => ':attribute turi būti galiojanti data YYYY-MM-DD formatu', - 'last_audit_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD hh:mm:ss format', + 'last_audit_date.date_format' => ':attribute turi būti galiojanti data YYYY-MM-DD hh:mm:ss formatu', 'expiration_date.date_format' => ':attribute turi būti galiojanti data YYYY-MM-DD formatu', 'termination_date.date_format' => ':attribute turi būti galiojanti data YYYY-MM-DD formatu', 'expected_checkin.date_format' => ':attribute turi būti galiojanti data YYYY-MM-DD formatu', @@ -158,5 +158,5 @@ return [ | Generic Validation Messages |-------------------------------------------------------------------------- */ - 'invalid_value_in_field' => 'Invalid value included in this field', + 'invalid_value_in_field' => 'Į šį lauką įtraukta netinkama reikšmė', ]; diff --git a/resources/lang/lv-LV/account/general.php b/resources/lang/lv-LV/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/lv-LV/account/general.php +++ b/resources/lang/lv-LV/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/lv-LV/admin/locations/message.php b/resources/lang/lv-LV/admin/locations/message.php index 842971933..136ef3b34 100644 --- a/resources/lang/lv-LV/admin/locations/message.php +++ b/resources/lang/lv-LV/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Atrašanās vietas neeksistē.', - 'assoc_users' => 'Pašlaik šī atrašanās vieta ir saistīta ar vismaz vienu lietotāju un to nevar izdzēst. Lūdzu, atjauniniet savus lietotājus, lai vairs nerindrinātu šo atrašanās vietu, un mēģiniet vēlreiz.', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Pašlaik šī atrašanās vieta ir saistīta ar vismaz vienu īpašumu un to nevar izdzēst. Lūdzu, atjauniniet savus aktīvus, lai vairs nerindotu šo atrašanās vietu, un mēģiniet vēlreiz.', 'assoc_child_loc' => 'Pašlaik šī vieta ir vismaz viena bērna atrašanās vieta un to nevar izdzēst. Lūdzu, atjauniniet savas atrašanās vietas, lai vairs nerindotu šo atrašanās vietu, un mēģiniet vēlreiz.', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/lv-LV/admin/settings/general.php b/resources/lang/lv-LV/admin/settings/general.php index a19c10ef8..2c3b34a7e 100644 --- a/resources/lang/lv-LV/admin/settings/general.php +++ b/resources/lang/lv-LV/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Aktīvu biržas garums, ieskaitot zerofill', 'username_format_help' => 'Importa process izmantos šo iestatījumu tikai ja lietotājvārds nebūs norādīts un mums to vajadzēs uzģenerēt priekš Tevis.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/lv-LV/general.php b/resources/lang/lv-LV/general.php index b83c56194..57f146682 100644 --- a/resources/lang/lv-LV/general.php +++ b/resources/lang/lv-LV/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Uzvārds un vārda pirmais burts (berzinsj@epasts.lv)', 'firstinitial.lastname' => 'Vārds un uzvārds (j.smith@example.com)', 'firstnamelastinitial' => 'Vārds Uzvārds (jane_smith@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Vārds', 'first_name_format' => 'Vārds (jane@example.com)', 'files' => 'Datnes', diff --git a/resources/lang/mi-NZ/account/general.php b/resources/lang/mi-NZ/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/mi-NZ/account/general.php +++ b/resources/lang/mi-NZ/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/mi-NZ/admin/locations/message.php b/resources/lang/mi-NZ/admin/locations/message.php index beada8199..c35cfa531 100644 --- a/resources/lang/mi-NZ/admin/locations/message.php +++ b/resources/lang/mi-NZ/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Kāore i te tīariari te wāhi.', - 'assoc_users' => 'Kei te hono tenei taangata ki tetahi kaiwhakamahi kotahi, kaore e taea te muku. Whakaorangia nga kaiwhakamahi kia kaua e tautuhi i tenei tauranga ka ngana ano.', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Kei te honohia tenei taapiri ki te iti rawa o te rawa me te kore e taea te muku. Whakaorangia nga taonga ki a koe kia kaua e tautuhi i tenei tauranga ka ngana ano.', 'assoc_child_loc' => 'Kei tenei waahi te matua o te iti rawa o te mokopuna me te kore e taea te muku. Whakaorangia nga taangata ki a koe kia kaua e tautuhi i tenei tauranga ka ngana ano.', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/mi-NZ/admin/settings/general.php b/resources/lang/mi-NZ/admin/settings/general.php index 143e125ca..b103db25b 100644 --- a/resources/lang/mi-NZ/admin/settings/general.php +++ b/resources/lang/mi-NZ/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Te roa o nga taputapu hua, tae atu ki te korerehu', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/mi-NZ/general.php b/resources/lang/mi-NZ/general.php index c2e0112c8..47d3c9b18 100644 --- a/resources/lang/mi-NZ/general.php +++ b/resources/lang/mi-NZ/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Ingoa Tuatahi', 'first_name_format' => 'Ingoa Tuatahi (jane@example.com)', 'files' => 'Files', diff --git a/resources/lang/mk-MK/account/general.php b/resources/lang/mk-MK/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/mk-MK/account/general.php +++ b/resources/lang/mk-MK/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/mk-MK/admin/locations/message.php b/resources/lang/mk-MK/admin/locations/message.php index f970ba754..c85ffb244 100644 --- a/resources/lang/mk-MK/admin/locations/message.php +++ b/resources/lang/mk-MK/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Локацијата не постои.', - 'assoc_users' => 'Оваа локација моментално е поврзана со барем еден корисник и не може да се избрише. Ве молиме да ги ажурирате вашите корисници за да не ја користете оваа локација и обидете се повторно. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Оваа локација моментално е поврзана со барем едно основно средство и не може да се избрише. Ве молиме да ги ажурирате вашите основни средства за да не ја користите оваа локација и обидете се повторно. ', 'assoc_child_loc' => 'Оваа локација моментално е родител на најмалку една локација и не може да се избрише. Ве молиме да ги ажурирате вашите локации повеќе да не ја користат оваа локација како родител и обидете се повторно. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/mk-MK/admin/settings/general.php b/resources/lang/mk-MK/admin/settings/general.php index 72510bfba..2b85acfd3 100644 --- a/resources/lang/mk-MK/admin/settings/general.php +++ b/resources/lang/mk-MK/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Length of asset tags, including zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/mk-MK/general.php b/resources/lang/mk-MK/general.php index bd2167d9b..79cb60880 100644 --- a/resources/lang/mk-MK/general.php +++ b/resources/lang/mk-MK/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Име', 'first_name_format' => 'Име (janko@example.com)', 'files' => 'Датотеки', diff --git a/resources/lang/ml-IN/account/general.php b/resources/lang/ml-IN/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/ml-IN/account/general.php +++ b/resources/lang/ml-IN/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/ml-IN/admin/locations/message.php b/resources/lang/ml-IN/admin/locations/message.php index 22c7fe8f7..8121b8068 100644 --- a/resources/lang/ml-IN/admin/locations/message.php +++ b/resources/lang/ml-IN/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Location does not exist.', - 'assoc_users' => 'This location is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this location and try again. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ', 'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/ml-IN/admin/settings/general.php b/resources/lang/ml-IN/admin/settings/general.php index 01adf36eb..727c35a6e 100644 --- a/resources/lang/ml-IN/admin/settings/general.php +++ b/resources/lang/ml-IN/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Length of asset tags, including zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/ml-IN/general.php b/resources/lang/ml-IN/general.php index 073a46b87..5b8f41bf0 100644 --- a/resources/lang/ml-IN/general.php +++ b/resources/lang/ml-IN/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'First Name', 'first_name_format' => 'First Name (jane@example.com)', 'files' => 'Files', diff --git a/resources/lang/mn-MN/account/general.php b/resources/lang/mn-MN/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/mn-MN/account/general.php +++ b/resources/lang/mn-MN/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/mn-MN/admin/locations/message.php b/resources/lang/mn-MN/admin/locations/message.php index 06a85814b..e69e94bad 100644 --- a/resources/lang/mn-MN/admin/locations/message.php +++ b/resources/lang/mn-MN/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Байршил байхгүй байна.', - 'assoc_users' => 'Энэ байршил нь одоогоор хамгийн багадаа нэг хэрэглэгчтэй холбоотой бөгөөд устгах боломжгүй байна. Энэ байршлыг лавшруулахгүй болгохын тулд хэрэглэгчдийг шинэчилнэ үү, дахин оролдоно уу.', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Энэ байршил нь одоогоор нэгээс доошгүй активтай холбоотой бөгөөд устгах боломжгүй байна. Энэ байршлыг лавлагаа болгохоо болихын тулд өөрийн хөрөнгийг шинэчлээд дахин оролдоно уу.', 'assoc_child_loc' => 'Энэ байршил нь одоогоор хамгийн багадаа нэг хүүхдийн байрлалын эцэг эх бөгөөд устгах боломжгүй байна. Энэ байршлыг лавшруулахгүй болгохын тулд байршлаа шинэчлээд дахин оролдоно уу.', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/mn-MN/admin/settings/general.php b/resources/lang/mn-MN/admin/settings/general.php index b18bac653..79db1f281 100644 --- a/resources/lang/mn-MN/admin/settings/general.php +++ b/resources/lang/mn-MN/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Үүнд үл хөдлөх хөрөнгийн хаягуудын урт', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/mn-MN/general.php b/resources/lang/mn-MN/general.php index 7a1cd90c0..bfb859615 100644 --- a/resources/lang/mn-MN/general.php +++ b/resources/lang/mn-MN/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Нэр', 'first_name_format' => 'Эхний нэр (jane@example.com)', 'files' => 'Файлууд', diff --git a/resources/lang/ms-MY/account/general.php b/resources/lang/ms-MY/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/ms-MY/account/general.php +++ b/resources/lang/ms-MY/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/ms-MY/admin/locations/message.php b/resources/lang/ms-MY/admin/locations/message.php index c07908596..afd8501df 100644 --- a/resources/lang/ms-MY/admin/locations/message.php +++ b/resources/lang/ms-MY/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Lokasi tidak wujud.', - 'assoc_users' => 'Lokasi ini sekaran telah disekutukan dengan sekurang2nya satu pengguna dan tidak boleh dihapuskan. Sila kemaskini pengguna anda supaya tidak lagi merujuk kepada lokasi ini dan cuba lagi. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Lokasi ini kini dikaitkan dengan sekurang-kurangnya satu aset dan tidak boleh dihapuskan. Sila kemas kini aset anda untuk tidak merujuk lagi lokasi ini dan cuba lagi.', 'assoc_child_loc' => 'Lokasi ini adalah ibu bapa sekurang-kurangnya satu lokasi kanak-kanak dan tidak boleh dipadamkan. Sila kemas kini lokasi anda untuk tidak merujuk lokasi ini lagi dan cuba lagi.', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/ms-MY/admin/settings/general.php b/resources/lang/ms-MY/admin/settings/general.php index 8984b3292..1b53decc5 100644 --- a/resources/lang/ms-MY/admin/settings/general.php +++ b/resources/lang/ms-MY/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Panjang tag aset, termasuk zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/ms-MY/general.php b/resources/lang/ms-MY/general.php index 3020411c4..e50413322 100644 --- a/resources/lang/ms-MY/general.php +++ b/resources/lang/ms-MY/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Nama pertama', 'first_name_format' => 'Nama Pertama (jane@example.com)', 'files' => 'Fail-fail', diff --git a/resources/lang/nl-NL/account/general.php b/resources/lang/nl-NL/account/general.php index 706bd2da4..c5fedd481 100644 --- a/resources/lang/nl-NL/account/general.php +++ b/resources/lang/nl-NL/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Persoonlijke API-sleutels', - 'api_key_warning' => 'Bij het genereren van een API-token, zorg ervoor dat je deze direct kopieert, omdat deze - niet zichtbaar voor je is.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Je API-basis-url bevindt zich op:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens zijn ingesteld om te verlopen in:', - 'api_reference' => 'Raadpleeg de API-referentie - om specifieke API-eindpunten en aanvullende API-documentatie te vinden.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/nl-NL/admin/locations/message.php b/resources/lang/nl-NL/admin/locations/message.php index 0a0596dbd..471c641f0 100644 --- a/resources/lang/nl-NL/admin/locations/message.php +++ b/resources/lang/nl-NL/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Locatie bestaat niet.', - 'assoc_users' => 'Deze locatie is momenteel gekoppeld met tenminste één persoon en kan hierdoor niet worden verwijderd. Update je gebruikers die niet meer bij deze locatie horen en probeer het opnieuw. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Deze locatie is momenteel gekoppeld met tenminste één asset en kan hierdoor niet worden verwijderd. Update je assets die niet meer bij deze locatie en probeer het opnieuw. ', 'assoc_child_loc' => 'Deze locatie is momenteen de ouder van ten minste één kind locatie en kan hierdoor niet worden verwijderd. Update je locaties bij die niet meer naar deze locatie verwijzen en probeer het opnieuw. ', 'assigned_assets' => 'Toegewezen activa', diff --git a/resources/lang/nl-NL/admin/settings/general.php b/resources/lang/nl-NL/admin/settings/general.php index b2573b0c3..cab5353fb 100644 --- a/resources/lang/nl-NL/admin/settings/general.php +++ b/resources/lang/nl-NL/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Lengte van asset labels, inclusief opvulling', 'username_format_help' => 'Deze instelling wordt alleen gebruikt door het importproces als er geen gebruikersnaam is opgegeven en we een gebruikersnaam moeten genereren.', 'oauth_title' => 'OAuth API-instellingen', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth eindpunt instellingen', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Instellingen', 'barcode_title' => 'Barcode instellingen bijwerken', 'barcodes' => 'Barcodes', diff --git a/resources/lang/nl-NL/general.php b/resources/lang/nl-NL/general.php index 53afeec3e..f3b904fef 100644 --- a/resources/lang/nl-NL/general.php +++ b/resources/lang/nl-NL/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Achternaam eerste initiaal (smith_j@example.com)', 'firstinitial.lastname' => 'Eerste initiaal achternaam (j.smith@example.com)', 'firstnamelastinitial' => 'Voornaam Initiaal Achternaam (janes@voorbeeld.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Voornaam', 'first_name_format' => 'Voornaam (jane@example.com)', 'files' => 'Bestanden', diff --git a/resources/lang/no-NO/account/general.php b/resources/lang/no-NO/account/general.php index 41f0dce68..bb3f5350b 100644 --- a/resources/lang/no-NO/account/general.php +++ b/resources/lang/no-NO/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personlige API-nøkler', - 'api_key_warning' => 'Når du generer en API token, vær sikker på kopiere den øyeblikkelig ettersom de - vil bli synlig for deg igjen.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Din API base-url finnes på:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API-tokens er satt til å utløpe om:', - 'api_reference' => 'Sjekk API-referanse for å - finne spesifikke API-endepunkter og ytterligere API-dokumentasjon.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/no-NO/admin/locations/message.php b/resources/lang/no-NO/admin/locations/message.php index f71183a2e..1f5840ba4 100644 --- a/resources/lang/no-NO/admin/locations/message.php +++ b/resources/lang/no-NO/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Lokasjon eksisterer ikke.', - 'assoc_users' => 'Denne lokasjonen er i bruk av minst en bruker, og kan ikke slettes. Fjern brukernes kobling mot lokasjonen og prøv igjen. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Lokasjonen er tilknyttet minst en eiendel og kan ikke slettes. Oppdater dine eiendeler slik at de ikke refererer til denne lokasjonen, og prøv igjen. ', 'assoc_child_loc' => 'Lokasjonen er overordnet til minst en underlokasjon og kan ikke slettes. Oppdater din lokasjoner til å ikke referere til denne lokasjonen, og prøv igjen. ', 'assigned_assets' => 'Tildelte ressurser', diff --git a/resources/lang/no-NO/admin/settings/general.php b/resources/lang/no-NO/admin/settings/general.php index b3982523e..daaa36e44 100644 --- a/resources/lang/no-NO/admin/settings/general.php +++ b/resources/lang/no-NO/admin/settings/general.php @@ -288,8 +288,18 @@ Linjeskift, topptekst, bilder, osv. kan føre til uventede resultater.', 'zerofill_count' => 'Lengden på ID-merker, inkludert zerofill', 'username_format_help' => 'Denne innstillingen vil bare bli brukt av importprosessen dersom et brukernavn ikke er oppgitt, og vi må generere et brukernavn for deg.', 'oauth_title' => 'OAuth API-innstillinger', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endepunktinnstillinger', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Oppdater Innstillinger for Eiendelsmerker', 'barcode_title' => 'Oppdater strekkodeinnstillinger', 'barcodes' => 'Strekkoder', diff --git a/resources/lang/no-NO/general.php b/resources/lang/no-NO/general.php index 53e7927f9..2edf4b9f1 100644 --- a/resources/lang/no-NO/general.php +++ b/resources/lang/no-NO/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Etternavn Fornavn Initialer (smith_j@example.com)', 'firstinitial.lastname' => 'Fornavn Initialer Etternavn (j.smith@example.com)', 'firstnamelastinitial' => 'Fornavn Etternavn Initialer (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Fornavn', 'first_name_format' => 'Fornavn (oladunk@example.com)', 'files' => 'Filer', diff --git a/resources/lang/pl-PL/account/general.php b/resources/lang/pl-PL/account/general.php index 19c0700bc..f95776033 100644 --- a/resources/lang/pl-PL/account/general.php +++ b/resources/lang/pl-PL/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Osobiste klucze API', - 'api_key_warning' => 'Po wygenerowaniu tokena API upewnij się, że skopiujesz go natychmiast, ponieważ - nie będzie potem widoczny.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Twój bazowy adres URL API znajduje się w:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'Tokeny API tracą ważność za:', - 'api_reference' => 'Sprawdź API reference, aby - znaleźć konkretne enpoint-y API i dodatkową dokumentację API.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/pl-PL/admin/locations/message.php b/resources/lang/pl-PL/admin/locations/message.php index 8d5f05098..148b5a807 100644 --- a/resources/lang/pl-PL/admin/locations/message.php +++ b/resources/lang/pl-PL/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Lokalizacja nie istnieje.', - 'assoc_users' => 'Lokalizacja obecnie jest skojarzona z minimum jednym użytkownikiem i nie może zostać usunięta. Uaktualnij właściwości użytkownika tak aby nie było relacji z tą lokalizacją i spróbuj ponownie. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Lokalizacja obecnie jest skojarzona z minimum jednym aktywem i nie może zostać usunięta. Uaktualnij właściwości aktywów tak aby nie było relacji z tą lokalizacją i spróbuj ponownie. ', 'assoc_child_loc' => 'Lokalizacja obecnie jest rodzicem minimum jeden innej lokalizacji i nie może zostać usunięta. Uaktualnij właściwości lokalizacji tak aby nie było relacji z tą lokalizacją i spróbuj ponownie. ', 'assigned_assets' => 'Przypisane aktywa', diff --git a/resources/lang/pl-PL/admin/settings/general.php b/resources/lang/pl-PL/admin/settings/general.php index f7d401ca6..bb1401154 100644 --- a/resources/lang/pl-PL/admin/settings/general.php +++ b/resources/lang/pl-PL/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Długość znaczników zasobów, w tym zerofill', 'username_format_help' => 'To ustawienie będzie używane przez proces importu tylko wtedy, gdy nazwa użytkownika nie jest podana i musimy wygenerować nazwę użytkownika dla Ciebie.', 'oauth_title' => 'Ustawienia API OAuth', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Ustawienia punktu końcowego Oauth', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Aktualizuj ustawienia tagów zasobów', 'barcode_title' => 'Aktualizuj ustawienia kodów kreskowych', 'barcodes' => 'Kody kreskowe', diff --git a/resources/lang/pl-PL/general.php b/resources/lang/pl-PL/general.php index 6030f4eae..39d3f8a31 100644 --- a/resources/lang/pl-PL/general.php +++ b/resources/lang/pl-PL/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Nazwisko i pierwsza litera imienia (smith_j@example.com)', 'firstinitial.lastname' => 'Pierwsza litera imienia i nazwisko (jsmith@example.com)', 'firstnamelastinitial' => 'Nazwisko i pierwsza litera imienia (smithj@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Imię', 'first_name_format' => 'Imię (jane@example.com)', 'files' => 'Pliki', diff --git a/resources/lang/pt-BR/account/general.php b/resources/lang/pt-BR/account/general.php index e4d9d80db..d5ce37316 100644 --- a/resources/lang/pt-BR/account/general.php +++ b/resources/lang/pt-BR/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Chaves de API pessoal', - 'api_key_warning' => 'Ao gerar um token de API, certifique-se de copiá-lo imediatamente porque - eles não serão visíveis para você novamente.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'A sua URL base da API está localizada em:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'Tokens de API estão definidos para expirar em:', - 'api_reference' => 'Confira a referência da API para - encontrar pontos de API específicos e documentação adicional da API.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/pt-BR/admin/locations/message.php b/resources/lang/pt-BR/admin/locations/message.php index 45c08a289..8e995b934 100644 --- a/resources/lang/pt-BR/admin/locations/message.php +++ b/resources/lang/pt-BR/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'O local não existe.', - 'assoc_users' => 'Este local está no momento associado com pelo menos um usuário e não pode ser excluído. Atualize seus usuários para não referenciarem mais este local e tente novamente. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Este local esta atualmente associado a pelo menos um ativo e não pode ser deletado. Por favor atualize seu ativo para não fazer mais referência a este local e tente novamente. ', 'assoc_child_loc' => 'Este local é atualmente o principal de pelo menos local secundário e não pode ser deletado. Por favor atualize seus locais para não fazer mais referência a este local e tente novamente. ', 'assigned_assets' => 'Ativos atribuídos', diff --git a/resources/lang/pt-BR/admin/settings/general.php b/resources/lang/pt-BR/admin/settings/general.php index e0c23e370..ddea1acce 100644 --- a/resources/lang/pt-BR/admin/settings/general.php +++ b/resources/lang/pt-BR/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Comprimento de etiquetas de ativos, incluindo zerofill', 'username_format_help' => 'Esta configuração será usada somente pelo processo de importação, se um nome de usuário não for fornecido nós iremos gerar um nome de usuário para você.', 'oauth_title' => 'Configurações da API OAuth', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Configurações de Endpoint Oauth', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Atualizar configurações de Tag do Ativo', 'barcode_title' => 'Atualizar Configurações de Código de Barras', 'barcodes' => 'Códigos de barras', diff --git a/resources/lang/pt-BR/general.php b/resources/lang/pt-BR/general.php index 90915c1d7..ded7dc934 100644 --- a/resources/lang/pt-BR/general.php +++ b/resources/lang/pt-BR/general.php @@ -11,9 +11,9 @@ return [ 'activity_report' => 'Relatório de Atividade', 'address' => 'Endereço', 'admin' => 'Administrador', - 'admin_tooltip' => 'This user has admin privileges', - 'superuser' => 'Superuser', - 'superuser_tooltip' => 'This user has superuser privileges', + 'admin_tooltip' => 'Este usuário tem privilégios de administrador', + 'superuser' => 'Super usuário', + 'superuser_tooltip' => 'Este usuário tem privilégios de superusuário', 'administrator' => 'Administrador', 'add_seats' => 'Assentos adicionados', 'age' => "Idade", @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Sobrenome Primeira Inicial (silva_j@exemplo.com.br)', 'firstinitial.lastname' => 'Inicial do Nome sobrenome (j.silva@exemplo.com.br)', 'firstnamelastinitial' => 'Primeiro Nome com Inicial do Sobrenome (joses@exemplo.com.br)', + 'lastnamefirstname' => 'Sobrenome Primeiro Nome (silva_j@exemplo.com.br)', 'first_name' => 'Primeiro Nome', 'first_name_format' => 'Primeiro Nome (jose@exemplo.com.br)', 'files' => 'Arquivos', @@ -205,8 +206,8 @@ return [ 'new_password' => 'Nova Senha', 'next' => 'Próxima', 'next_audit_date' => 'Próxima Data de Auditoria', - 'next_audit_date_help' => 'If you use auditing in your organization, this is usually automatically calculated based on the asset's last audit date and audit frequency (in Admin Settings > Alerts) and you can leave this blank. You can manually set this date here if you need to, but it must be later than the last audit date. ', - 'audit_images_help' => 'You can find audit images in the asset\'s history tab.', + 'next_audit_date_help' => 'Se você usa a auditoria na sua organização, isto é geralmente calculado automaticamente com base no ativo's da última data de auditoria e frequência de auditoria (em Configurações de Admin > Alertas) e você pode deixar em branco. Você pode definir manualmente essa data, se precisar, mas ela deve ser posterior à última data de auditoria. ', + 'audit_images_help' => 'Você pode encontrar imagens de auditoria na aba histórico do ativo.', 'no_email' => 'Nenhum endereço de e-mail associado a este usuário', 'last_audit' => 'Última auditoria', 'new' => 'novo!', @@ -244,8 +245,8 @@ return [ 'requested_assets' => 'Ativos Solicitados', 'requested_assets_menu' => 'Ativos Solicitados', 'request_canceled' => 'Solicitação Cancelada', - 'request_item' => 'Request this item', - 'external_link_tooltip' => 'External link to', + 'request_item' => 'Solicitar esse item', + 'external_link_tooltip' => 'Link externo para', 'save' => 'Salvar', 'select_var' => 'Selecione :thing... ', // this will eventually replace all of our other selects 'select' => 'Selecionar', @@ -302,7 +303,7 @@ return [ 'user' => 'Usuário', 'accepted' => 'aceitar', 'declined' => 'recusar', - 'declined_note' => 'Declined Notes', + 'declined_note' => 'Notas Rejeitadas', 'unassigned' => 'Não atribuído', 'unaccepted_asset_report' => 'Ativos Recusados', 'users' => 'Usuários', @@ -404,7 +405,7 @@ Resultados da Sincronização', 'accessory_name' => 'Nome do Acessório:', 'clone_item' => 'Clonar Item', 'checkout_tooltip' => 'Fazer check-out do item', - 'checkin_tooltip' => 'Check this item in so that it is available for re-issue, re-imaging, etc', + 'checkin_tooltip' => 'Selecione este item para que ele esteja disponível para re-questão, re-imagem, etc', 'checkout_user_tooltip' => 'Fazer check-out deste item para um usuário', 'checkin_to_diff_location' => 'You can choose to check this asset in to a location other than this asset\'s default location of :default_location if one is set', 'maintenance_mode' => 'O serviço está temporariamente indisponível para atualizações do sistema. Por favor, volte mais tarde.', @@ -507,7 +508,7 @@ Resultados da Sincronização', 'address2' => 'Complemento', 'import_note' => 'Importado usando o importador csv', ], - 'remove_customfield_association' => 'Remove this field from the fieldset. This will not delete the custom field, only this field\'s association with this fieldset.', + 'remove_customfield_association' => 'Remover este campo do conjunto de campos. Isto não irá apagar o campo personalizado, apenas a associação deste campo com este conjunto de campos.', 'checked_out_to_fields' => 'Checked Out To Fields', 'percent_complete' => '% completo', 'uploading' => 'Enviando... ', diff --git a/resources/lang/pt-BR/table.php b/resources/lang/pt-BR/table.php index 5fdefa300..72ffc511f 100644 --- a/resources/lang/pt-BR/table.php +++ b/resources/lang/pt-BR/table.php @@ -6,6 +6,6 @@ return array( 'action' => 'Ação', 'by' => 'Por', 'item' => 'Item', - 'no_matching_records' => 'No matching records found', + 'no_matching_records' => 'Nenhum resultado foi encontrado', ); diff --git a/resources/lang/pt-PT/account/general.php b/resources/lang/pt-PT/account/general.php index 18877036a..9edf9bb3e 100644 --- a/resources/lang/pt-PT/account/general.php +++ b/resources/lang/pt-PT/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Chaves Pessoais de API', - 'api_key_warning' => 'Ao gerar um token de API, certifique-se de copiá-lo imediatamente pois eles - não serão visíveis novamente.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'O URL base da API está localizada em:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'Tokens de API estão definidos para expirar em:', - 'api_reference' => 'Verifique a referência da API para - encontrar endpoints de API específicos e documentação adicional da API.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/pt-PT/admin/locations/message.php b/resources/lang/pt-PT/admin/locations/message.php index 1bee6f214..eb175ed8b 100644 --- a/resources/lang/pt-PT/admin/locations/message.php +++ b/resources/lang/pt-PT/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Localização não existe.', - 'assoc_users' => 'Esta localização está atualmente associada com pelo menos um utilizador e não pode ser removida. Atualize este utilizadores de modo a não referenciarem mais este local e tente novamente. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Esta localização está atualmente associada com pelo menos um artigo e não pode ser removida. Atualize este artigos de modo a não referenciarem mais este local e tente novamente. ', 'assoc_child_loc' => 'Esta localização contém pelo menos uma sub-localização e não pode ser removida. Por favor, atualize as localizações para não referenciarem mais esta localização e tente novamente. ', 'assigned_assets' => 'Artigos atribuídos', diff --git a/resources/lang/pt-PT/admin/settings/general.php b/resources/lang/pt-PT/admin/settings/general.php index a6c7a44e7..a047da9be 100644 --- a/resources/lang/pt-PT/admin/settings/general.php +++ b/resources/lang/pt-PT/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Comprimento de tags de artigos, incluindo zerofill', 'username_format_help' => 'Esta configuração será usada apenas pelo processo de importação se um nome de utilizador não for fornecido e tivermos de gerar um nome de utilizador para si.', 'oauth_title' => 'Configurações da API OAuth', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Configurações de Endpoint Oauth', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Atualizar configurações de Etiquetas de Artigo', 'barcode_title' => 'Atualizar Configurações de Código de Barras', 'barcodes' => 'Código de barras', diff --git a/resources/lang/pt-PT/general.php b/resources/lang/pt-PT/general.php index 10b7d70bc..f6ed6f739 100644 --- a/resources/lang/pt-PT/general.php +++ b/resources/lang/pt-PT/general.php @@ -11,9 +11,9 @@ return [ 'activity_report' => 'Relatório de atividades', 'address' => 'Morada', 'admin' => 'Administração', - 'admin_tooltip' => 'This user has admin privileges', - 'superuser' => 'Superuser', - 'superuser_tooltip' => 'This user has superuser privileges', + 'admin_tooltip' => 'Este usuário tem privilégios de administrador', + 'superuser' => 'Superusuário', + 'superuser_tooltip' => 'Este usuário tem privilégios de superusuário', 'administrator' => 'Administrador', 'add_seats' => 'Utilizadores adicionados', 'age' => "Idade", @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Sobrenome Inicial Nome Próprio (smith_j@example.com)', 'firstinitial.lastname' => 'Inicial Nome Próprio Sobrenome(j.smith@example.com)', 'firstnamelastinitial' => 'Nome próprio Sobrenome (janes@exemple.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Nome', 'first_name_format' => 'Primeiro Nome (jane@example.com)', 'files' => 'Ficheiros', @@ -205,7 +206,7 @@ return [ 'new_password' => 'Nova senha', 'next' => 'Próximo', 'next_audit_date' => 'Próxima Data de Auditoria', - 'next_audit_date_help' => 'If you use auditing in your organization, this is usually automatically calculated based on the asset's last audit date and audit frequency (in Admin Settings > Alerts) and you can leave this blank. You can manually set this date here if you need to, but it must be later than the last audit date. ', + 'next_audit_date_help' => 'Se você usa a auditoria na sua organização, isto é geralmente calculado automaticamente com base nos ativos's da última data de auditoria e frequência de auditoria (em Configurações de Admin > Alertas) e você pode deixar em branco. Você pode definir manualmente essa data, se precisar, mas ela deve ser posterior à última data de auditoria. ', 'audit_images_help' => 'You can find audit images in the asset\'s history tab.', 'no_email' => 'Nenhum endereço de e-mail associado a este usuário', 'last_audit' => 'Última auditoria', @@ -244,8 +245,8 @@ return [ 'requested_assets' => 'Artigos solicitados', 'requested_assets_menu' => 'Artigos solicitados', 'request_canceled' => 'Pedido cancelado', - 'request_item' => 'Request this item', - 'external_link_tooltip' => 'External link to', + 'request_item' => 'Solicitar esse item', + 'external_link_tooltip' => 'Link externo para', 'save' => 'Guardar', 'select_var' => 'Selecione :thing... ', // this will eventually replace all of our other selects 'select' => 'Selecione', @@ -302,7 +303,7 @@ return [ 'user' => 'Utilizador', 'accepted' => 'aceite', 'declined' => 'recusado', - 'declined_note' => 'Declined Notes', + 'declined_note' => 'Notas Rejeitadas', 'unassigned' => 'Não atribuído', 'unaccepted_asset_report' => 'Artigos recusados', 'users' => 'Utilizadores', @@ -405,7 +406,7 @@ return [ 'checkout_tooltip' => 'Entregue este item', 'checkin_tooltip' => 'Check this item in so that it is available for re-issue, re-imaging, etc', 'checkout_user_tooltip' => 'Rececione este artigo para um utilizador', - 'checkin_to_diff_location' => 'You can choose to check this asset in to a location other than this asset\'s default location of :default_location if one is set', + 'checkin_to_diff_location' => 'Você pode optar por verificar este ativo em um local diferente da localização padrão deste ativo de :default_location se estiver definido', 'maintenance_mode' => 'O serviço está temporariamente indisponível para atualizações do sistema. Por favor, volte mais tarde.', 'maintenance_mode_title' => 'Serviço temporariamente indisponível', 'ldap_import' => 'A senha do utilizador não deve ser gerida pelo LDAP. (Isto permite que seja enviado pedidos de senha esquecida.)', diff --git a/resources/lang/ro-RO/account/general.php b/resources/lang/ro-RO/account/general.php index e99c9b39d..43143459f 100644 --- a/resources/lang/ro-RO/account/general.php +++ b/resources/lang/ro-RO/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Chei API personale', - 'api_key_warning' => 'La generarea unui token API, asigurați-vă că îl copiați imediat deoarece - nu va mai fi vizibil pentru dvs. din nou.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'URL-ul de bază API este localizat la:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'Token-urile API sunt setate să expire în:', - 'api_reference' => 'Vă rugăm să verificați referința API la - pentru a găsi criterii specifice API și documentație API adițională.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/ro-RO/admin/locations/message.php b/resources/lang/ro-RO/admin/locations/message.php index 8eccec560..4b1a136ce 100644 --- a/resources/lang/ro-RO/admin/locations/message.php +++ b/resources/lang/ro-RO/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Locatia nu exista.', - 'assoc_users' => 'Aceasta locatie este momentan asociata cu cel putin inca un alt utilizator si nu poate fi stearsa. Va rugam actualizati utilizatorii care nu mai apartin de aceasta locatie si incercati iar. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Această locație este în prezent asociată cu cel puțin un material și nu poate fi ștearsă. Actualizați-vă activele astfel încât acestea să nu mai fie menționate și să încercați din nou.', 'assoc_child_loc' => 'Această locație este în prezent părinte pentru cel puțin o locație copil și nu poate fi ștearsă. Actualizați locațiile dvs. pentru a nu mai referi această locație și încercați din nou.', 'assigned_assets' => 'Atribuire Active', diff --git a/resources/lang/ro-RO/admin/settings/general.php b/resources/lang/ro-RO/admin/settings/general.php index 681a7aeb9..a16cb1138 100644 --- a/resources/lang/ro-RO/admin/settings/general.php +++ b/resources/lang/ro-RO/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Lungimea etichetelor de activ, inclusiv zerofill', 'username_format_help' => 'Această setare va fi folosită de procesul de import doar dacă un nume de utilizator nu este furnizat și trebuie să generăm un nume de utilizator pentru tine.', 'oauth_title' => 'Setări API OAuth', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Setări Oauth final', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Actualizați setările etichetei de active', 'barcode_title' => 'Actualizați setările codului de bare', 'barcodes' => 'Barcodes', diff --git a/resources/lang/ro-RO/general.php b/resources/lang/ro-RO/general.php index a3f04b9f5..6bf87cb4f 100644 --- a/resources/lang/ro-RO/general.php +++ b/resources/lang/ro-RO/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Prenume Prima Inițială (smith_j@example.com)', 'firstinitial.lastname' => 'Primul nume inițial (j.smith@example.com)', 'firstnamelastinitial' => 'Prenume Nume Ultima Inițială (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Prenume', 'first_name_format' => 'Prenume (jane@example.com)', 'files' => 'Fișiere', diff --git a/resources/lang/ru-RU/account/general.php b/resources/lang/ru-RU/account/general.php index 4d6ab5bfd..546ad0594 100644 --- a/resources/lang/ru-RU/account/general.php +++ b/resources/lang/ru-RU/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Персональные API ключи', - 'api_key_warning' => 'При создании ключа API скопируйте его сразу, так как его - больше нельзя посмотреть.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Ваш базовый URL-адрес API находится в:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API токены истекут:', - 'api_reference' => 'Пожалуйста, обратитесь к справочнику API, чтобы - найти конкретные конечные точки API и дополнительную документацию API.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/ru-RU/admin/locations/message.php b/resources/lang/ru-RU/admin/locations/message.php index 3c9904bf3..b76abe49b 100644 --- a/resources/lang/ru-RU/admin/locations/message.php +++ b/resources/lang/ru-RU/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Статус актива не существует.', - 'assoc_users' => 'Данный статус связан с одним или несколькими активами, и не может быть удален. Удалите либо измените связанные активы. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Это месторасположение связано как минимум с одним активом и не может быть удалено. Измените ваши активы так, чтобы они не ссылались на это месторасположение и попробуйте ещё раз. ', 'assoc_child_loc' => 'У этого месторасположения является родительским и у него есть как минимум одно месторасположение уровнем ниже. Поэтому оно не может быть удалено. Обновите ваши месторасположения, так чтобы не ссылаться на него и попробуйте снова. ', 'assigned_assets' => 'Присвоенные активы', diff --git a/resources/lang/ru-RU/admin/settings/general.php b/resources/lang/ru-RU/admin/settings/general.php index 00a01bd32..0555716c5 100644 --- a/resources/lang/ru-RU/admin/settings/general.php +++ b/resources/lang/ru-RU/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Длина инвентарного номера, включая заполнение нулями', 'username_format_help' => 'Этот параметр используется только в процессе импорта, если имя пользователя не предоставляется и мы должны сгенерировать его для Вас.', 'oauth_title' => 'Настройки OAuth API', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Настройки Oauth Endpoint', + 'oauth_no_clients' => 'У вас ещё нет клиентов OAuth.', + 'oauth_secret' => 'Секретный ключ', + 'oauth_authorized_apps' => 'Авторизированные приложения', + 'oauth_redirect_url' => 'Ссылка переадресации', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Области видимости', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Обновить Настройки Тега Актива', 'barcode_title' => 'Обновить Настройки Штрих-кода', 'barcodes' => 'Штрихкоды', diff --git a/resources/lang/ru-RU/general.php b/resources/lang/ru-RU/general.php index b30a23e31..01b00069d 100644 --- a/resources/lang/ru-RU/general.php +++ b/resources/lang/ru-RU/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Фамилия Первая буква имени (ivanov_i@example.com)', 'firstinitial.lastname' => 'Первая буква имени и фамилия (i.ivanov@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Имя', 'first_name_format' => 'Имя (jane@example.com)', 'files' => 'Файлы', diff --git a/resources/lang/si-LK/account/general.php b/resources/lang/si-LK/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/si-LK/account/general.php +++ b/resources/lang/si-LK/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/si-LK/admin/locations/message.php b/resources/lang/si-LK/admin/locations/message.php index 22c7fe8f7..8121b8068 100644 --- a/resources/lang/si-LK/admin/locations/message.php +++ b/resources/lang/si-LK/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Location does not exist.', - 'assoc_users' => 'This location is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this location and try again. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ', 'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/si-LK/admin/settings/general.php b/resources/lang/si-LK/admin/settings/general.php index 01adf36eb..727c35a6e 100644 --- a/resources/lang/si-LK/admin/settings/general.php +++ b/resources/lang/si-LK/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Length of asset tags, including zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/si-LK/general.php b/resources/lang/si-LK/general.php index 98cc49d49..d557e3d84 100644 --- a/resources/lang/si-LK/general.php +++ b/resources/lang/si-LK/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'First Name', 'first_name_format' => 'First Name (jane@example.com)', 'files' => 'Files', diff --git a/resources/lang/sk-SK/account/general.php b/resources/lang/sk-SK/account/general.php index 668a2a446..a1759f999 100644 --- a/resources/lang/sk-SK/account/general.php +++ b/resources/lang/sk-SK/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Osobné API kľúče', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/sk-SK/admin/locations/message.php b/resources/lang/sk-SK/admin/locations/message.php index cce93782e..6814c63be 100644 --- a/resources/lang/sk-SK/admin/locations/message.php +++ b/resources/lang/sk-SK/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Lokalita neexistuje.', - 'assoc_users' => 'Táto lokalita je priradená minimálne jednému používateľov, preto nemôže byť odstránená. Prosím upravte údaje príslušeného používateľa, aby nevyužíval túto lokalitu a skúste znovu. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Táto lokalita je priradená minimálne jednému majetku, preto nemôže byť odstránená. Prosím odstráňte referenciu na túto lokalitu z príslušného majetku a skúste znovu. ', 'assoc_child_loc' => 'Táto lokalita je nadradenou minimálne jednej podradenej lokalite, preto nemôže byť odstránená. Prosím odstráňte referenciu s príslušnej lokality a skúste znovu. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/sk-SK/admin/settings/general.php b/resources/lang/sk-SK/admin/settings/general.php index 926b8b980..1a511c481 100644 --- a/resources/lang/sk-SK/admin/settings/general.php +++ b/resources/lang/sk-SK/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Length of asset tags, including zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API nastavenia ', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Čiarové kódy', diff --git a/resources/lang/sk-SK/general.php b/resources/lang/sk-SK/general.php index d3a0ffcb6..1fb752042 100644 --- a/resources/lang/sk-SK/general.php +++ b/resources/lang/sk-SK/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Meno', 'first_name_format' => 'First Name (jane@example.com)', 'files' => 'Files', diff --git a/resources/lang/sl-SI/account/general.php b/resources/lang/sl-SI/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/sl-SI/account/general.php +++ b/resources/lang/sl-SI/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/sl-SI/admin/locations/message.php b/resources/lang/sl-SI/admin/locations/message.php index b2c44eb6e..5f3af41ed 100644 --- a/resources/lang/sl-SI/admin/locations/message.php +++ b/resources/lang/sl-SI/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Lokacija ne obstaja.', - 'assoc_users' => 'Ta lokacija je trenutno povezana z vsaj enim uporabnikom in je ni mogoče izbrisati. Prosimo, posodobite svoje uporabnike, da ne bodo več vsebovali te lokacije in poskusite znova. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Ta lokacija je trenutno povezana z vsaj enim sredstvom in je ni mogoče izbrisati. Prosimo, posodobite svoja sredstva, da ne bodo več vsebovali te lokacije in poskusite znova. ', 'assoc_child_loc' => 'Ta lokacija je trenutno starš vsaj ene lokacije otroka in je ni mogoče izbrisati. Posodobite svoje lokacije, da ne bodo več vsebovale te lokacije in poskusite znova. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/sl-SI/admin/settings/general.php b/resources/lang/sl-SI/admin/settings/general.php index 62cc81a7d..978490013 100644 --- a/resources/lang/sl-SI/admin/settings/general.php +++ b/resources/lang/sl-SI/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Dolžina oznak sredstev, vključno z zerofilom', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/sl-SI/general.php b/resources/lang/sl-SI/general.php index 4f706f96a..4a8ab1c0c 100644 --- a/resources/lang/sl-SI/general.php +++ b/resources/lang/sl-SI/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Priimek s prvo črko imena (smith_j@example.com)', 'firstinitial.lastname' => 'Prva črka imena s priimkom (j.smith@example.com)', 'firstnamelastinitial' => 'Ime s prvo črko priimka (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Ime', 'first_name_format' => 'Ime (jane@example.com)', 'files' => 'Datoteke', diff --git a/resources/lang/so-SO/account/general.php b/resources/lang/so-SO/account/general.php index 9a1bf65fd..df21ad820 100644 --- a/resources/lang/so-SO/account/general.php +++ b/resources/lang/so-SO/account/general.php @@ -2,10 +2,10 @@ return array( 'personal_api_keys' => 'Furayaasha API Personal', - 'api_key_warning' => 'Markaad dhaliso calaamada API, hubi inaad koobiyayso isla markaaba maadaama aanay mar dambe kuu muuqan doonin.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Url saldhigga API wuxuu ku yaalaa:', 'api_base_url_endpoint' => '/< dhamaadka>', 'api_token_expiration_time' => 'Calaamadaha API waxa lagu dejiyay inay ku dhacaan:', - 'api_reference' => 'Fadlan hubi Tixraaca API si aad u heshid meelaha dhamaadka API ee gaarka ah iyo dukumeenti API oo dheeri ah.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/so-SO/admin/locations/message.php b/resources/lang/so-SO/admin/locations/message.php index 472868cdf..f9676f1f3 100644 --- a/resources/lang/so-SO/admin/locations/message.php +++ b/resources/lang/so-SO/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Goobtu ma jirto.', - 'assoc_users' => 'Goobtan hadda waxa lala xidhiidhiyaa ugu yaraan hal isticmaale lamana tirtiri karo Fadlan cusboonaysii isticmaaleyaashaada si aanay mardambe u tixraacin goobtan oo isku day mar kale. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Goobtan hadda waxa lala xidhiidhiyaa ugu yaraan hal hanti lamana tirtiri karo. Fadlan cusboonaysii hantidaada si aanay meeshan u tixraacin oo mar kale isku day. ', 'assoc_child_loc' => 'Goobtan hadda waa waalidka ugu yaraan hal meel oo caruur ah lamana tirtiri karo. Fadlan cusboonaysii goobahaaga si aanay mar dambe tixraac goobtan oo isku day mar kale. ', 'assigned_assets' => 'Hantida loo qoondeeyay', diff --git a/resources/lang/so-SO/admin/settings/general.php b/resources/lang/so-SO/admin/settings/general.php index 1f6291567..77fd16472 100644 --- a/resources/lang/so-SO/admin/settings/general.php +++ b/resources/lang/so-SO/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Dhererka calaamadaha hantida, oo ay ku jiraan eber-fill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Cusbooneysii Settings Tag Asset', 'barcode_title' => 'Cusbooneysii Settings Barcode', 'barcodes' => 'Barcodes', diff --git a/resources/lang/so-SO/general.php b/resources/lang/so-SO/general.php index 0a7143290..ab0b5652f 100644 --- a/resources/lang/so-SO/general.php +++ b/resources/lang/so-SO/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Magaca Dambe ee ugu horreeya (smith_j@example.com)', 'firstinitial.lastname' => 'Magaca Dambe ee Koowaad (j.smith@example.com)', 'firstnamelastinitial' => 'Magaca hore ee ugu dambeeya (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Magaca koowaad', 'first_name_format' => 'Magaca koowaad (jane@example.com)', 'files' => 'Faylasha', diff --git a/resources/lang/sq-AL/account/general.php b/resources/lang/sq-AL/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/sq-AL/account/general.php +++ b/resources/lang/sq-AL/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/sq-AL/admin/locations/message.php b/resources/lang/sq-AL/admin/locations/message.php index 22c7fe8f7..8121b8068 100644 --- a/resources/lang/sq-AL/admin/locations/message.php +++ b/resources/lang/sq-AL/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Location does not exist.', - 'assoc_users' => 'This location is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this location and try again. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ', 'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/sq-AL/admin/settings/general.php b/resources/lang/sq-AL/admin/settings/general.php index 01adf36eb..727c35a6e 100644 --- a/resources/lang/sq-AL/admin/settings/general.php +++ b/resources/lang/sq-AL/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Length of asset tags, including zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/sq-AL/general.php b/resources/lang/sq-AL/general.php index ec0b8e6ee..7777302a6 100644 --- a/resources/lang/sq-AL/general.php +++ b/resources/lang/sq-AL/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'First Name', 'first_name_format' => 'First Name (jane@example.com)', 'files' => 'Files', diff --git a/resources/lang/sr-CS/account/general.php b/resources/lang/sr-CS/account/general.php index a1ed1dd58..3e24d0c4d 100644 --- a/resources/lang/sr-CS/account/general.php +++ b/resources/lang/sr-CS/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Lični API kključevi', - 'api_key_warning' => 'Pri generisanju API tokena, obavezno ga odmah kopirajte jer oni - vam neće ponovo biti vidljivi.', + 'api_key_warning' => 'Po generisanju API tokena, obavezno ga odmah iskopirajte jer vam neće biti ponovo vidljiv.', 'api_base_url' => 'Vaša osnovna adresa API-ja se nalazi u:', 'api_base_url_endpoint' => '<endpoint>', 'api_token_expiration_time' => 'API tokeni će isteći za:', - 'api_reference' => 'Proverite API referencu da biste - pronašli određene krajnje tačke API-ja i dodatnu API dokumentaciju.', + 'api_reference' => 'Molim vas konsultujte API podsetnik da bi ste pronašli određene API krajnje tačke i dodatnu API dokumentaciju.', 'profile_updated' => 'Nalog je uspešno izmenjen', ); diff --git a/resources/lang/sr-CS/admin/locations/message.php b/resources/lang/sr-CS/admin/locations/message.php index 9ec24a6ac..ffb2c63c4 100644 --- a/resources/lang/sr-CS/admin/locations/message.php +++ b/resources/lang/sr-CS/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Lokacija ne postoji.', - 'assoc_users' => 'Ta je lokacija trenutno povezana s barem jednim korisnikom i ne može se izbrisati. Ažurirajte korisnike da više se ne referenciraju na ovu lokaciju i pokušajte ponovno. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Ta je lokacija trenutno povezana s barem jednim resursom i ne može se izbrisati. Ažurirajte resurs da se više ne referencira na tu lokaciju i pokušajte ponovno. ', 'assoc_child_loc' => 'Ta je lokacija trenutno roditelj najmanje jednoj podredjenoj lokaciji i ne može se izbrisati. Ažurirajte svoje lokacije da se više ne referenciraju na ovu lokaciju i pokušajte ponovo. ', 'assigned_assets' => 'Dodeljena imovina', diff --git a/resources/lang/sr-CS/admin/settings/general.php b/resources/lang/sr-CS/admin/settings/general.php index 1dc6767db..861d4a029 100644 --- a/resources/lang/sr-CS/admin/settings/general.php +++ b/resources/lang/sr-CS/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Dužina oznake sredstva, uključujući i popunu nulama', 'username_format_help' => 'Ovo podešavanje će se koristiti u procesu uvoza samo ako korisničko ime nije navedeno i mi moramo da generišemo korisničko ime za vas.', 'oauth_title' => 'OAuth API podešavanje', + 'oauth_clients' => 'OAuth klijenti', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint podešavanja', + 'oauth_no_clients' => 'Još uvek niste kreirali nijedan OAuth klijenat.', + 'oauth_secret' => 'Tajna', + 'oauth_authorized_apps' => 'Autorizovane aplikacije', + 'oauth_redirect_url' => 'URL adresa za redirekciju', + 'oauth_name_help' => ' Nešto što će vaši korisnici prepoznati i čemu će verovati.', + 'oauth_scopes' => 'Opsezi', + 'oauth_callback_url' => 'Povratna adresa za autorizaciju vaše aplikacije.', + 'create_client' => 'Napravi klijenta', + 'no_scopes' => 'Nema opsega', 'asset_tag_title' => 'Obnovite podešavanja upozorenja', 'barcode_title' => 'Obnovite Slack podešavanja', 'barcodes' => 'Barkodovi', diff --git a/resources/lang/sr-CS/general.php b/resources/lang/sr-CS/general.php index 12cd14ad4..272f17cc4 100644 --- a/resources/lang/sr-CS/general.php +++ b/resources/lang/sr-CS/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Prezime inicijal Imena (smith_j@example.com)', 'firstinitial.lastname' => 'Inicijal imena Prezime (j.smith@example.com)', 'firstnamelastinitial' => 'Ime inicijal Prezimena (janes@example.com)', + 'lastnamefirstname' => 'Prezime Ime (smith.jane@example.com)', 'first_name' => 'Ime', 'first_name_format' => 'Ime (jane@example.com)', 'files' => 'Datoteke', diff --git a/resources/lang/sv-SE/account/general.php b/resources/lang/sv-SE/account/general.php index dc1e90d26..b1de0f7ce 100644 --- a/resources/lang/sv-SE/account/general.php +++ b/resources/lang/sv-SE/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personliga API-nycklar', - 'api_key_warning' => 'När du genererar en API-token, se till att kopiera den omedelbart eftersom de - inte kommer att vara synliga för dig igen.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Din API-bas-url finns på:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API-tokens är inställda på att gå ut om:', - 'api_reference' => 'Vänligen kontrollera API-referensen för att - hitta specifika API-slutpunkter och ytterligare API-dokumentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/sv-SE/admin/locations/message.php b/resources/lang/sv-SE/admin/locations/message.php index bd384b911..22e2354e2 100644 --- a/resources/lang/sv-SE/admin/locations/message.php +++ b/resources/lang/sv-SE/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Platsen finns inte.', - 'assoc_users' => 'Platsen är associerad med minst en användare och kan inte tas bort. Vänligen uppdatera dina användare så dom inte refererar till denna plats och försök igen.', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Platsen är associerad med minst en tillgång och kan inte tas bort. Vänligen uppdatera dina tillgångar så dom inte refererar till denna plats och försök igen. ', 'assoc_child_loc' => 'Denna plats är för närvarande överliggande för minst en annan plats och kan inte tas bort. Vänligen uppdatera dina platser så dom inte längre refererar till denna och försök igen.', 'assigned_assets' => 'Tilldelade tillgångar', diff --git a/resources/lang/sv-SE/admin/settings/general.php b/resources/lang/sv-SE/admin/settings/general.php index b1d2bfc1e..51d764f65 100644 --- a/resources/lang/sv-SE/admin/settings/general.php +++ b/resources/lang/sv-SE/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Längd på tillgångstaggar, inklusive zerofill', 'username_format_help' => 'Denna inställning kommer endast att användas av importprocessen om ett användarnamn inte finns och vi måste generera ett användarnamn åt dig.', 'oauth_title' => 'OAuth API-inställningar', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth användarvillkor inställningar', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Uppdatera stöldmärknings inställningar', 'barcode_title' => 'Uppdatera streckkodsinställningar', 'barcodes' => 'Streckkoder', diff --git a/resources/lang/sv-SE/general.php b/resources/lang/sv-SE/general.php index df85e6c39..070ffbc01 100644 --- a/resources/lang/sv-SE/general.php +++ b/resources/lang/sv-SE/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Efternamn Första Initialen (smith_j@example.com)', 'firstinitial.lastname' => 'Första Initialen Efternamn (j.smith@example.com)', 'firstnamelastinitial' => 'Efternamn Första Initialen (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Förnamn', 'first_name_format' => 'Förnamn (jane@example.com)', 'files' => 'Filer', diff --git a/resources/lang/ta-IN/account/general.php b/resources/lang/ta-IN/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/ta-IN/account/general.php +++ b/resources/lang/ta-IN/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/ta-IN/admin/locations/message.php b/resources/lang/ta-IN/admin/locations/message.php index e3c957733..88f392b2e 100644 --- a/resources/lang/ta-IN/admin/locations/message.php +++ b/resources/lang/ta-IN/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'இருப்பிடம் இல்லை.', - 'assoc_users' => 'தற்போது இந்த இடம் குறைந்தபட்சம் ஒரு பயனருடன் தொடர்புடையது மற்றும் நீக்கப்பட முடியாது. தயவுசெய்து இந்த இடத்தை இனி குறிப்பிடாமல் உங்கள் பயனர்களை புதுப்பித்து மீண்டும் முயற்சிக்கவும்.', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'இந்த இடம் தற்போது குறைந்தது ஒரு சொத்துடன் தொடர்புடையது மற்றும் நீக்கப்பட முடியாது. இந்த இருப்பிடத்தை இனி குறிப்பிடாமல் உங்கள் சொத்துக்களை புதுப்பித்து மீண்டும் முயற்சிக்கவும்.', 'assoc_child_loc' => 'இந்த இடம் தற்போது குறைந்தது ஒரு குழந்தையின் இருப்பிடத்தின் பெற்றோர் மற்றும் அதை நீக்க முடியாது. இந்த இருப்பிடத்தை இனி குறிப்பிடாமல் இருக்க உங்கள் இருப்பிடங்களை புதுப்பித்து மீண்டும் முயற்சிக்கவும்.', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/ta-IN/admin/settings/general.php b/resources/lang/ta-IN/admin/settings/general.php index 7433a352d..d33e3838c 100644 --- a/resources/lang/ta-IN/admin/settings/general.php +++ b/resources/lang/ta-IN/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'சொரெஃபைல் உள்ளிட்ட சொத்தின் குறிச்சொற்களை நீளம்', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/ta-IN/general.php b/resources/lang/ta-IN/general.php index 242bd9e9f..5a2f29ee0 100644 --- a/resources/lang/ta-IN/general.php +++ b/resources/lang/ta-IN/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'முதல் பெயர்', 'first_name_format' => 'முதல் பெயர் (jane@example.com)', 'files' => 'Files', diff --git a/resources/lang/th-TH/account/general.php b/resources/lang/th-TH/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/th-TH/account/general.php +++ b/resources/lang/th-TH/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/th-TH/admin/locations/message.php b/resources/lang/th-TH/admin/locations/message.php index 6aae7c477..f481aa2b0 100644 --- a/resources/lang/th-TH/admin/locations/message.php +++ b/resources/lang/th-TH/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'ไม่มีสถานที่นี้.', - 'assoc_users' => 'สถานที่นี้ถูกใช้งานหรือเกี่ยวข้องอยู่กับผู้ใช้งานคนใดคนหนึ่ง และไม่สามารถลบได้ กรุณาปรับปรุงผู้ใช้งานของท่านไม่ให้มีส่วนเกี่ยวข้องกับสถานที่นี้ และลองอีกครั้ง. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'สถานที่นี้ถูกใช้งานหรือเกี่ยวข้องอยู่กับผู้ใช้งานคนใดคนหนึ่ง และไม่สามารถลบได้ กรุณาปรับปรุงผู้ใช้งานของท่านไม่ให้มีส่วนเกี่ยวข้องกับสถานที่นี้ และลองอีกครั้ง. ', 'assoc_child_loc' => 'สถานที่นี้ถูกใช้งานหรือเกี่ยวข้องอยู่กับหมวดสถานที่ใดที่หนึ่ง และไม่สามารถลบได้ กรุณาปรับปรุงสถานที่ของท่านไม่ให้มีส่วนเกี่ยวข้องกับหมวดสถานที่นี้ และลองอีกครั้ง. ', 'assigned_assets' => 'สินทรัพย์ถูกมอบหมายแล้ว', diff --git a/resources/lang/th-TH/admin/settings/general.php b/resources/lang/th-TH/admin/settings/general.php index 369734e9c..ba2cf9903 100644 --- a/resources/lang/th-TH/admin/settings/general.php +++ b/resources/lang/th-TH/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'ความยาวของแท็กเนื้อหารวมทั้ง zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/th-TH/general.php b/resources/lang/th-TH/general.php index 872b84fa2..223e4b3b5 100644 --- a/resources/lang/th-TH/general.php +++ b/resources/lang/th-TH/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'นามสกุล อักษรต้นชื่อ (smith_j@example.com)', 'firstinitial.lastname' => 'อักษรต้นชื่อ นามสกุล (j.smith@example.com)', 'firstnamelastinitial' => 'ชื่อ อักษรต้นนามสกุล (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'ชื่อจริง', 'first_name_format' => 'ชื่อ (jane@example.com)', 'files' => 'ไฟล์', diff --git a/resources/lang/tl-PH/account/general.php b/resources/lang/tl-PH/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/tl-PH/account/general.php +++ b/resources/lang/tl-PH/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/tl-PH/admin/locations/message.php b/resources/lang/tl-PH/admin/locations/message.php index 22c7fe8f7..8121b8068 100644 --- a/resources/lang/tl-PH/admin/locations/message.php +++ b/resources/lang/tl-PH/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Location does not exist.', - 'assoc_users' => 'This location is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this location and try again. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ', 'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/tl-PH/admin/settings/general.php b/resources/lang/tl-PH/admin/settings/general.php index 5fdc676e0..cbb9956d2 100644 --- a/resources/lang/tl-PH/admin/settings/general.php +++ b/resources/lang/tl-PH/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Length of asset tags, including zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/tl-PH/general.php b/resources/lang/tl-PH/general.php index fc66775c1..88d3b5ed3 100644 --- a/resources/lang/tl-PH/general.php +++ b/resources/lang/tl-PH/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'First Name', 'first_name_format' => 'First Name (jane@example.com)', 'files' => 'Files', diff --git a/resources/lang/tr-TR/account/general.php b/resources/lang/tr-TR/account/general.php index 7fb43a717..f04fa0479 100644 --- a/resources/lang/tr-TR/account/general.php +++ b/resources/lang/tr-TR/account/general.php @@ -2,11 +2,10 @@ return array( 'personal_api_keys' => 'Kişisel API Anahtarları', - 'api_key_warning' => 'Bir API jetonu oluştururken, onu hemen kopyaladığınızdan emin olun. - bir daha size görünmeyecek.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'API\'nizin temel URL\'si şurada bulunur:', 'api_base_url_endpoint' => '/<uçnokta>', 'api_token_expiration_time' => 'API jetonlarınız şu süre içinde sona erecek şekilde ayarlanmıştır:', - 'api_reference' => 'Lütfen API referansını kontrol edin belirli API uç noktalarını ve ek API belgelerini bulun.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/tr-TR/admin/locations/message.php b/resources/lang/tr-TR/admin/locations/message.php index 79c56aa50..ff8b6cee9 100644 --- a/resources/lang/tr-TR/admin/locations/message.php +++ b/resources/lang/tr-TR/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Konum mevcut değil.', - 'assoc_users' => 'Konum en az 1 kullanıcı ile ilişkili durumda ve silinemez. Lütfen önce kullanıcıları güncelleyerek konumu boşaltın ve tekrar deneyin. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Bu konum şu anda en az bir varlık ile ilişkili ve silinemez. Lütfen artık bu konumu kullanabilmek için varlık konumlarını güncelleştirin.', 'assoc_child_loc' => 'Bu konum şu anda en az bir alt konum üstüdür ve silinemez. Lütfen artık bu konuma ait alt konumları güncelleyin. ', 'assigned_assets' => 'Atanan Varlıklar', diff --git a/resources/lang/tr-TR/admin/settings/general.php b/resources/lang/tr-TR/admin/settings/general.php index 9e7ee4981..c8643ceb3 100644 --- a/resources/lang/tr-TR/admin/settings/general.php +++ b/resources/lang/tr-TR/admin/settings/general.php @@ -288,8 +288,18 @@ return [ 'zerofill_count' => 'Varlık etiketlerinin uzunluğu, boşluksuz olmak üzere', 'username_format_help' => 'Bu ayar, yalnızca bir kullanıcı adı sağlanmadıysa ve sizin için bir kullanıcı adı oluşturmamız gerekiyorsa içe aktarma işlemi tarafından kullanılacaktır.', 'oauth_title' => 'Auth API ayarları', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'Auth', 'oauth_help' => 'Auth Endpoint Ayarları', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Varlık Etiket Ayarlarını Güncelle', 'barcode_title' => 'Barkod ayarlarını güncelle', 'barcodes' => 'Barkod', diff --git a/resources/lang/tr-TR/general.php b/resources/lang/tr-TR/general.php index 8aabb3e16..5770cb861 100644 --- a/resources/lang/tr-TR/general.php +++ b/resources/lang/tr-TR/general.php @@ -137,6 +137,7 @@ Context | Request Context 'lastname_firstinitial' => 'Soyad ve Adın İlk Harfi (smith_j@example.com)', 'firstinitial.lastname' => 'Adın İlk Harfi ve Soyad (j.smith@example.com)', 'firstnamelastinitial' => 'Ad ve Soyadın İlk Harfi (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Ad', 'first_name_format' => 'Ad (jane@example.com)', 'files' => 'Dosyalar', diff --git a/resources/lang/uk-UA/account/general.php b/resources/lang/uk-UA/account/general.php index 5a06c9c39..eb5b53413 100644 --- a/resources/lang/uk-UA/account/general.php +++ b/resources/lang/uk-UA/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Особисті ключі API', - 'api_key_warning' => 'Під час створення токену API, не забудьте надійно зберегти його, - тому що він не буде вам знову показаний.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Ваша базова URL-адреса API:', 'api_base_url_endpoint' => '/<ресурс>', 'api_token_expiration_time' => 'API токени закінчуються:', - 'api_reference' => 'Будь ласка, перевірте довідку по API, щоб - дізнатись про ресурси API та додаткову документацію стосовно них.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/uk-UA/admin/locations/message.php b/resources/lang/uk-UA/admin/locations/message.php index a7b5b111e..24ea7a9b7 100644 --- a/resources/lang/uk-UA/admin/locations/message.php +++ b/resources/lang/uk-UA/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Розташування не існує.', - 'assoc_users' => 'Розташування зараз пов\'язано як мінімум з одним користувачем та не може бути видалено. Оновіть ваших користувачів, так щоб вони не були більше пов\'язані з розташуванням і спробуйте ще раз. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Це розташування в даний час пов\'язано принаймні з одним активом і не може бути видалений. Будь ласка, оновіть ваші медіафайли, щоб більше не посилатися на це розташування і повторіть спробу. ', 'assoc_child_loc' => 'Це місцезнаходження наразі батько принаймні одного дочірнього місця і не може бути видалений. Будь ласка, оновіть ваше місцеположення, щоб більше не посилатися на це місце і повторіть спробу. ', 'assigned_assets' => 'Призначені активи', diff --git a/resources/lang/uk-UA/admin/settings/general.php b/resources/lang/uk-UA/admin/settings/general.php index 007161eff..10596b1a2 100644 --- a/resources/lang/uk-UA/admin/settings/general.php +++ b/resources/lang/uk-UA/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Довжина тегів медіафайлів, включаючи нульовий рівень', 'username_format_help' => 'Цей параметр буде використовуватися лише процесом імпорту, якщо ім\'я користувача не надано, а ми повинні згенерувати ім\'я користувача.', 'oauth_title' => 'Налаштування OAuth API', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Параметри кінцевої точки Oauth', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Оновити налаштування тегу активу', 'barcode_title' => 'Оновити налаштування штрих-коду', 'barcodes' => 'Barcodes', diff --git a/resources/lang/uk-UA/general.php b/resources/lang/uk-UA/general.php index 33c28089f..228ec6ef7 100644 --- a/resources/lang/uk-UA/general.php +++ b/resources/lang/uk-UA/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Прізвище Першою початковою (smith_j@example.com)', 'firstinitial.lastname' => 'Перше початкове ім\'я (j.smith@example.com)', 'firstnamelastinitial' => 'Останнє ім\'я (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Ім\'я', 'first_name_format' => 'Ім\'я (jane@example.com)', 'files' => 'Файли', diff --git a/resources/lang/ur-PK/account/general.php b/resources/lang/ur-PK/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/ur-PK/account/general.php +++ b/resources/lang/ur-PK/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/ur-PK/admin/locations/message.php b/resources/lang/ur-PK/admin/locations/message.php index 22c7fe8f7..8121b8068 100644 --- a/resources/lang/ur-PK/admin/locations/message.php +++ b/resources/lang/ur-PK/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Location does not exist.', - 'assoc_users' => 'This location is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this location and try again. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ', 'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/ur-PK/admin/settings/general.php b/resources/lang/ur-PK/admin/settings/general.php index 01adf36eb..727c35a6e 100644 --- a/resources/lang/ur-PK/admin/settings/general.php +++ b/resources/lang/ur-PK/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Length of asset tags, including zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/ur-PK/general.php b/resources/lang/ur-PK/general.php index ec0b8e6ee..7777302a6 100644 --- a/resources/lang/ur-PK/general.php +++ b/resources/lang/ur-PK/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'First Name', 'first_name_format' => 'First Name (jane@example.com)', 'files' => 'Files', diff --git a/resources/lang/vendor/backup/ar/notifications.php b/resources/lang/vendor/backup/ar/notifications.php new file mode 100644 index 000000000..48bc70987 --- /dev/null +++ b/resources/lang/vendor/backup/ar/notifications.php @@ -0,0 +1,45 @@ + 'رسالة استثناء: :message', + 'exception_trace' => 'تتبع الإستثناء: :trace', + 'exception_message_title' => 'رسالة استثناء', + 'exception_trace_title' => 'تتبع الإستثناء', + + 'backup_failed_subject' => 'أخفق النسخ الاحتياطي لل :application_name', + 'backup_failed_body' => 'مهم: حدث خطأ أثناء النسخ الاحتياطي :application_name', + + 'backup_successful_subject' => 'نسخ احتياطي جديد ناجح ل :application_name', + 'backup_successful_subject_title' => 'نجاح النسخ الاحتياطي الجديد!', + 'backup_successful_body' => 'أخبار عظيمة، نسخة احتياطية جديدة ل :application_name تم إنشاؤها بنجاح على القرص المسمى :disk_name.', + + 'cleanup_failed_subject' => 'فشل تنظيف النسخ الاحتياطي للتطبيق :application_name .', + 'cleanup_failed_body' => 'حدث خطأ أثناء تنظيف النسخ الاحتياطية ل :application_name', + + 'cleanup_successful_subject' => 'تنظيف النسخ الاحتياطية ل :application_name تمت بنجاح', + 'cleanup_successful_subject_title' => 'تنظيف النسخ الاحتياطية تم بنجاح!', + 'cleanup_successful_body' => 'تنظيف النسخ الاحتياطية ل :application_name على القرص المسمى :disk_name تم بنجاح.', + + 'healthy_backup_found_subject' => 'النسخ الاحتياطية ل :application_name على القرص :disk_name صحية', + 'healthy_backup_found_subject_title' => 'النسخ الاحتياطية ل :application_name صحية', + 'healthy_backup_found_body' => 'تعتبر النسخ الاحتياطية ل :application_name صحية. عمل جيد!', + + 'unhealthy_backup_found_subject' => 'مهم: النسخ الاحتياطية ل :application_name غير صحية', + 'unhealthy_backup_found_subject_title' => 'مهم: النسخ الاحتياطية ل :application_name غير صحية. :problem', + 'unhealthy_backup_found_body' => 'النسخ الاحتياطية ل :application_name على القرص :disk_name غير صحية.', + 'unhealthy_backup_found_not_reachable' => 'لا يمكن الوصول إلى وجهة النسخ الاحتياطي. :error', + 'unhealthy_backup_found_empty' => 'لا توجد نسخ احتياطية لهذا التطبيق على الإطلاق.', + 'unhealthy_backup_found_old' => 'تم إنشاء أحدث النسخ الاحتياطية في :date وتعتبر قديمة جدا.', + 'unhealthy_backup_found_unknown' => 'عذرا، لا يمكن تحديد سبب دقيق.', + 'unhealthy_backup_found_full' => 'النسخ الاحتياطية تستخدم الكثير من التخزين. الاستخدام الحالي هو :disk_usage وهو أعلى من الحد المسموح به من :disk_limit.', + + 'no_backups_info' => 'لم يتم عمل نسخ احتياطية حتى الآن', + 'application_name' => 'اسم التطبيق', + 'backup_name' => 'اسم النسخ الاحتياطي', + 'disk' => 'القرص', + 'newest_backup_size' => 'أحدث حجم للنسخ الاحتياطي', + 'number_of_backups' => 'عدد النسخ الاحتياطية', + 'total_storage_used' => 'إجمالي مساحة التخزين المستخدمة', + 'newest_backup_date' => 'أحدث تاريخ النسخ الاحتياطي', + 'oldest_backup_date' => 'أقدم تاريخ نسخ احتياطي', +]; diff --git a/resources/lang/vendor/backup/bg/notifications.php b/resources/lang/vendor/backup/bg/notifications.php new file mode 100644 index 000000000..7c87d5b7c --- /dev/null +++ b/resources/lang/vendor/backup/bg/notifications.php @@ -0,0 +1,45 @@ + 'Съобщение за изключение: :message', + 'exception_trace' => 'Проследяване на изключение: :trace', + 'exception_message_title' => 'Съобщение за изключение', + 'exception_trace_title' => 'Проследяване на изключение', + + 'backup_failed_subject' => 'Неуспешно резервно копие на :application_name', + 'backup_failed_body' => 'Важно: Възникна грешка при архивиране на :application_name', + + 'backup_successful_subject' => 'Успешно ново резервно копие на :application_name', + 'backup_successful_subject_title' => 'Успешно ново резервно копие!', + 'backup_successful_body' => 'Чудесни новини, ново резервно копие на :application_name беше успешно създадено на диска с име :disk_name.', + + 'cleanup_failed_subject' => 'Почистването на резервните копия на :application_name не бе успешно.', + 'cleanup_failed_body' => 'Възникна грешка при почистването на резервните копия на :application_name', + + 'cleanup_successful_subject' => 'Почистването на архивите на :application_name е успешно', + 'cleanup_successful_subject_title' => 'Почистването на резервните копия е успешно!', + 'cleanup_successful_body' => 'Почистването на резервни копия на :application_name на диска с име :disk_name беше успешно.', + + 'healthy_backup_found_subject' => 'Резервните копия за :application_name на диск :disk_name са здрави', + 'healthy_backup_found_subject_title' => 'Резервните копия за :application_name са здрави', + 'healthy_backup_found_body' => 'Резервните копия за :application_name се считат за здрави. Добра работа!', + + 'unhealthy_backup_found_subject' => 'Важно: Резервните копия за :application_name не са здрави', + 'unhealthy_backup_found_subject_title' => 'Важно: Резервните копия за :application_name не са здрави. :проблем', + 'unhealthy_backup_found_body' => 'Резервните копия за :application_name на диск :disk_name не са здрави.', + 'unhealthy_backup_found_not_reachable' => 'Дестинацията за резервни копия не може да бъде достигната. :грешка', + 'unhealthy_backup_found_empty' => 'Изобщо няма резервни копия на това приложение.', + 'unhealthy_backup_found_old' => 'Последното резервно копие, направено на :date, се счита за твърде старо.', + 'unhealthy_backup_found_unknown' => 'За съжаление не може да се определи точна причина.', + 'unhealthy_backup_found_full' => 'Резервните копия използват твърде много място за съхранение. Текущото използване е :disk_usage, което е по-високо от разрешеното ограничение на :disk_limit.', + + 'no_backups_info' => 'Все още не са правени резервни копия', + 'application_name' => 'Име на приложението', + 'backup_name' => 'Име на резервно копие', + 'disk' => 'Диск', + 'newest_backup_size' => 'Най-новият размер на резервно копие', + 'number_of_backups' => 'Брой резервни копия', + 'total_storage_used' => 'Общо използвано дисково пространство', + 'newest_backup_date' => 'Най-нова дата на резервно копие', + 'oldest_backup_date' => 'Най-старата дата на резервно копие', +]; diff --git a/resources/lang/vendor/backup/bn/notifications.php b/resources/lang/vendor/backup/bn/notifications.php new file mode 100644 index 000000000..bd0bf8184 --- /dev/null +++ b/resources/lang/vendor/backup/bn/notifications.php @@ -0,0 +1,45 @@ + 'এক্সসেপশন বার্তা: :message', + 'exception_trace' => 'এক্সসেপশন ট্রেস: :trace', + 'exception_message_title' => 'এক্সসেপশন message', + 'exception_trace_title' => 'এক্সসেপশন ট্রেস', + + 'backup_failed_subject' => ':application_name এর ব্যাকআপ ব্যর্থ হয়েছে।', + 'backup_failed_body' => 'গুরুত্বপূর্ণঃ :application_name ব্যাক আপ করার সময় একটি ত্রুটি ঘটেছে।', + + 'backup_successful_subject' => ':application_name এর নতুন ব্যাকআপ সফল হয়েছে।', + 'backup_successful_subject_title' => 'নতুন ব্যাকআপ সফল হয়েছে!', + 'backup_successful_body' => 'খুশির খবর, :application_name এর নতুন ব্যাকআপ :disk_name ডিস্কে সফলভাবে তৈরি হয়েছে।', + + 'cleanup_failed_subject' => ':application_name ব্যাকআপগুলি সাফ করতে ব্যর্থ হয়েছে।', + 'cleanup_failed_body' => ':application_name ব্যাকআপগুলি সাফ করার সময় একটি ত্রুটি ঘটেছে।', + + 'cleanup_successful_subject' => ':application_name এর ব্যাকআপগুলি সফলভাবে সাফ করা হয়েছে।', + 'cleanup_successful_subject_title' => 'ব্যাকআপগুলি সফলভাবে সাফ করা হয়েছে!', + 'cleanup_successful_body' => ':application_name এর ব্যাকআপগুলি :disk_name ডিস্ক থেকে সফলভাবে সাফ করা হয়েছে।', + + 'healthy_backup_found_subject' => ':application_name এর ব্যাকআপগুলি :disk_name ডিস্কে স্বাস্থ্যকর অবস্থায় আছে।', + 'healthy_backup_found_subject_title' => ':application_name এর ব্যাকআপগুলি স্বাস্থ্যকর অবস্থায় আছে।', + 'healthy_backup_found_body' => ':application_name এর ব্যাকআপগুলি স্বাস্থ্যকর বিবেচনা করা হচ্ছে। Good job!', + + 'unhealthy_backup_found_subject' => 'গুরুত্বপূর্ণঃ :application_name এর ব্যাকআপগুলি অস্বাস্থ্যকর অবস্থায় আছে।', + 'unhealthy_backup_found_subject_title' => 'গুরুত্বপূর্ণঃ :application_name এর ব্যাকআপগুলি অস্বাস্থ্যকর অবস্থায় আছে। :problem', + 'unhealthy_backup_found_body' => ':disk_name ডিস্কের :application_name এর ব্যাকআপগুলি অস্বাস্থ্যকর অবস্থায় আছে।', + 'unhealthy_backup_found_not_reachable' => 'ব্যাকআপ গন্তব্যে পৌঁছানো যায় নি। :error', + 'unhealthy_backup_found_empty' => 'এই অ্যাপ্লিকেশনটির কোনও ব্যাকআপ নেই।', + 'unhealthy_backup_found_old' => 'সর্বশেষ ব্যাকআপ যেটি :date এই তারিখে করা হয়েছে, সেটি খুব পুরানো।', + 'unhealthy_backup_found_unknown' => 'দুঃখিত, সঠিক কারণ নির্ধারণ করা সম্ভব হয়নি।', + 'unhealthy_backup_found_full' => 'ব্যাকআপগুলি অতিরিক্ত স্টোরেজ ব্যবহার করছে। বর্তমান ব্যবহারের পরিমান :disk_usage যা অনুমোদিত সীমা :disk_limit এর বেশি।', + + 'no_backups_info' => 'কোনো ব্যাকআপ এখনও তৈরি হয়নি', + 'application_name' => 'আবেদনের নাম', + 'backup_name' => 'ব্যাকআপের নাম', + 'disk' => 'ডিস্ক', + 'newest_backup_size' => 'নতুন ব্যাকআপ আকার', + 'number_of_backups' => 'ব্যাকআপের সংখ্যা', + 'total_storage_used' => 'ব্যবহৃত মোট সঞ্চয়স্থান', + 'newest_backup_date' => 'নতুন ব্যাকআপের তারিখ', + 'oldest_backup_date' => 'পুরানো ব্যাকআপের তারিখ', +]; diff --git a/resources/lang/vendor/backup/cs/notifications.php b/resources/lang/vendor/backup/cs/notifications.php new file mode 100644 index 000000000..9a145d9cb --- /dev/null +++ b/resources/lang/vendor/backup/cs/notifications.php @@ -0,0 +1,45 @@ + 'Zpráva výjimky: :message', + 'exception_trace' => 'Stopa výjimky: :trace', + 'exception_message_title' => 'Zpráva výjimky', + 'exception_trace_title' => 'Stopa výjimky', + + 'backup_failed_subject' => 'Záloha :application_name neuspěla', + 'backup_failed_body' => 'Důležité: Při záloze :application_name se vyskytla chyba', + + 'backup_successful_subject' => 'Úspěšná nová záloha :application_name', + 'backup_successful_subject_title' => 'Úspěšná nová záloha!', + 'backup_successful_body' => 'Dobrá zpráva, na disku jménem :disk_name byla úspěšně vytvořena nová záloha :application_name.', + + 'cleanup_failed_subject' => 'Vyčištění záloh :application_name neuspělo.', + 'cleanup_failed_body' => 'Při čištění záloh :application_name se vyskytla chyba', + + 'cleanup_successful_subject' => 'Vyčištění záloh :application_name úspěšné', + 'cleanup_successful_subject_title' => 'Vyčištění záloh bylo úspěšné!', + 'cleanup_successful_body' => 'Vyčištění záloh :application_name na disku jménem :disk_name bylo úspěšné.', + + 'healthy_backup_found_subject' => 'Zálohy pro :application_name na disku :disk_name jsou zdravé', + 'healthy_backup_found_subject_title' => 'Zálohy pro :application_name jsou zdravé', + 'healthy_backup_found_body' => 'Zálohy pro :application_name jsou považovány za zdravé. Dobrá práce!', + + 'unhealthy_backup_found_subject' => 'Důležité: Zálohy pro :application_name jsou nezdravé', + 'unhealthy_backup_found_subject_title' => 'Důležité: Zálohy pro :application_name jsou nezdravé. :problem', + 'unhealthy_backup_found_body' => 'Zálohy pro :application_name na disku :disk_name jsou nezdravé.', + 'unhealthy_backup_found_not_reachable' => 'Nelze se dostat k cíli zálohy. :error', + 'unhealthy_backup_found_empty' => 'Tato aplikace nemá vůbec žádné zálohy.', + 'unhealthy_backup_found_old' => 'Poslední záloha vytvořená dne :date je považována za příliš starou.', + 'unhealthy_backup_found_unknown' => 'Omlouváme se, nemůžeme určit přesný důvod.', + 'unhealthy_backup_found_full' => 'Zálohy zabírají příliš mnoho místa na disku. Aktuální využití disku je :disk_usage, což je vyšší než povolený limit :disk_limit.', + + 'no_backups_info' => 'Zatím nebyly vytvořeny žádné zálohy', + 'application_name' => 'Název aplikace', + 'backup_name' => 'Název zálohy', + 'disk' => 'Disk', + 'newest_backup_size' => 'Velikost nejnovější zálohy', + 'number_of_backups' => 'Počet záloh', + 'total_storage_used' => 'Celková využitá kapacita úložiště', + 'newest_backup_date' => 'Datum nejnovější zálohy', + 'oldest_backup_date' => 'Datum nejstarší zálohy', +]; diff --git a/resources/lang/vendor/backup/da/notifications.php b/resources/lang/vendor/backup/da/notifications.php new file mode 100644 index 000000000..d51954238 --- /dev/null +++ b/resources/lang/vendor/backup/da/notifications.php @@ -0,0 +1,45 @@ + 'Fejlbesked: :message', + 'exception_trace' => 'Fejl trace: :trace', + 'exception_message_title' => 'Fejlbesked', + 'exception_trace_title' => 'Fejl trace', + + 'backup_failed_subject' => 'Backup af :application_name fejlede', + 'backup_failed_body' => 'Vigtigt: Der skete en fejl under backup af :application_name', + + 'backup_successful_subject' => 'Ny backup af :application_name oprettet', + 'backup_successful_subject_title' => 'Ny backup!', + 'backup_successful_body' => 'Gode nyheder - der blev oprettet en ny backup af :application_name på disken :disk_name.', + + 'cleanup_failed_subject' => 'Oprydning af backups for :application_name fejlede.', + 'cleanup_failed_body' => 'Der skete en fejl under oprydning af backups for :application_name', + + 'cleanup_successful_subject' => 'Oprydning af backups for :application_name gennemført', + 'cleanup_successful_subject_title' => 'Backup oprydning gennemført!', + 'cleanup_successful_body' => 'Oprydningen af backups for :application_name på disken :disk_name er gennemført.', + + 'healthy_backup_found_subject' => 'Alle backups for :application_name på disken :disk_name er OK', + 'healthy_backup_found_subject_title' => 'Alle backups for :application_name er OK', + 'healthy_backup_found_body' => 'Alle backups for :application_name er ok. Godt gået!', + + 'unhealthy_backup_found_subject' => 'Vigtigt: Backups for :application_name fejlbehæftede', + 'unhealthy_backup_found_subject_title' => 'Vigtigt: Backups for :application_name er fejlbehæftede. :problem', + 'unhealthy_backup_found_body' => 'Backups for :application_name på disken :disk_name er fejlbehæftede.', + 'unhealthy_backup_found_not_reachable' => 'Backup destinationen kunne ikke findes. :error', + 'unhealthy_backup_found_empty' => 'Denne applikation har ingen backups overhovedet.', + 'unhealthy_backup_found_old' => 'Den seneste backup fra :date er for gammel.', + 'unhealthy_backup_found_unknown' => 'Beklager, en præcis årsag kunne ikke findes.', + 'unhealthy_backup_found_full' => 'Backups bruger for meget plads. Nuværende disk forbrug er :disk_usage, hvilket er mere end den tilladte grænse på :disk_limit.', + + 'no_backups_info' => 'Der blev ikke foretaget nogen sikkerhedskopier endnu', + 'application_name' => 'Ansøgningens navn', + 'backup_name' => 'Backup navn', + 'disk' => 'Disk', + 'newest_backup_size' => 'Nyeste backup-størrelse', + 'number_of_backups' => 'Antal sikkerhedskopier', + 'total_storage_used' => 'Samlet lagerplads brugt', + 'newest_backup_date' => 'Nyeste backup-størrelse', + 'oldest_backup_date' => 'Ældste backup-størrelse', +]; diff --git a/resources/lang/vendor/backup/de/notifications.php b/resources/lang/vendor/backup/de/notifications.php new file mode 100644 index 000000000..acce7896c --- /dev/null +++ b/resources/lang/vendor/backup/de/notifications.php @@ -0,0 +1,45 @@ + 'Fehlermeldung: :message', + 'exception_trace' => 'Fehlerverfolgung: :trace', + 'exception_message_title' => 'Fehlermeldung', + 'exception_trace_title' => 'Fehlerverfolgung', + + 'backup_failed_subject' => 'Backup von :application_name konnte nicht erstellt werden', + 'backup_failed_body' => 'Wichtig: Beim Backup von :application_name ist ein Fehler aufgetreten', + + 'backup_successful_subject' => 'Erfolgreiches neues Backup von :application_name', + 'backup_successful_subject_title' => 'Erfolgreiches neues Backup!', + 'backup_successful_body' => 'Gute Nachrichten, ein neues Backup von :application_name wurde erfolgreich erstellt und in :disk_name gepeichert.', + + 'cleanup_failed_subject' => 'Aufräumen der Backups von :application_name schlug fehl.', + 'cleanup_failed_body' => 'Beim aufräumen der Backups von :application_name ist ein Fehler aufgetreten', + + 'cleanup_successful_subject' => 'Aufräumen der Backups von :application_name backups erfolgreich', + 'cleanup_successful_subject_title' => 'Aufräumen der Backups erfolgreich!', + 'cleanup_successful_body' => 'Aufräumen der Backups von :application_name in :disk_name war erfolgreich.', + + 'healthy_backup_found_subject' => 'Die Backups von :application_name in :disk_name sind gesund', + 'healthy_backup_found_subject_title' => 'Die Backups von :application_name sind Gesund', + 'healthy_backup_found_body' => 'Die Backups von :application_name wurden als gesund eingestuft. Gute Arbeit!', + + 'unhealthy_backup_found_subject' => 'Wichtig: Die Backups für :application_name sind nicht gesund', + 'unhealthy_backup_found_subject_title' => 'Wichtig: Die Backups für :application_name sind ungesund. :problem', + 'unhealthy_backup_found_body' => 'Die Backups für :application_name in :disk_name sind ungesund.', + 'unhealthy_backup_found_not_reachable' => 'Das Backup Ziel konnte nicht erreicht werden. :error', + 'unhealthy_backup_found_empty' => 'Es gibt für die Anwendung noch gar keine Backups.', + 'unhealthy_backup_found_old' => 'Das letzte Backup am :date ist zu lange her.', + 'unhealthy_backup_found_unknown' => 'Sorry, ein genauer Grund konnte nicht gefunden werden.', + 'unhealthy_backup_found_full' => 'Die Backups verbrauchen zu viel Platz. Aktuell wird :disk_usage belegt, dass ist höher als das erlaubte Limit von :disk_limit.', + + 'no_backups_info' => 'Bisher keine Backups vorhanden', + 'application_name' => 'Applikationsname', + 'backup_name' => 'Backup Name', + 'disk' => 'Speicherort', + 'newest_backup_size' => 'Neuste Backup-Größe', + 'number_of_backups' => 'Anzahl Backups', + 'total_storage_used' => 'Gesamter genutzter Speicherplatz', + 'newest_backup_date' => 'Neustes Backup', + 'oldest_backup_date' => 'Ältestes Backup', +]; diff --git a/resources/lang/vendor/backup/en/notifications.php b/resources/lang/vendor/backup/en/notifications.php new file mode 100644 index 000000000..73811bde3 --- /dev/null +++ b/resources/lang/vendor/backup/en/notifications.php @@ -0,0 +1,45 @@ + 'Exception message: :message', + 'exception_trace' => 'Exception trace: :trace', + 'exception_message_title' => 'Exception message', + 'exception_trace_title' => 'Exception trace', + + 'backup_failed_subject' => 'Failed backup of :application_name', + 'backup_failed_body' => 'Important: An error occurred while backing up :application_name', + + 'backup_successful_subject' => 'Successful new backup of :application_name', + 'backup_successful_subject_title' => 'Successful new backup!', + 'backup_successful_body' => 'Great news, a new backup of :application_name was successfully created on the disk named :disk_name.', + + 'cleanup_failed_subject' => 'Cleaning up the backups of :application_name failed.', + 'cleanup_failed_body' => 'An error occurred while cleaning up the backups of :application_name', + + 'cleanup_successful_subject' => 'Clean up of :application_name backups successful', + 'cleanup_successful_subject_title' => 'Clean up of backups successful!', + 'cleanup_successful_body' => 'The clean up of the :application_name backups on the disk named :disk_name was successful.', + + 'healthy_backup_found_subject' => 'The backups for :application_name on disk :disk_name are healthy', + 'healthy_backup_found_subject_title' => 'The backups for :application_name are healthy', + 'healthy_backup_found_body' => 'The backups for :application_name are considered healthy. Good job!', + + 'unhealthy_backup_found_subject' => 'Important: The backups for :application_name are unhealthy', + 'unhealthy_backup_found_subject_title' => 'Important: The backups for :application_name are unhealthy. :problem', + 'unhealthy_backup_found_body' => 'The backups for :application_name on disk :disk_name are unhealthy.', + 'unhealthy_backup_found_not_reachable' => 'The backup destination cannot be reached. :error', + 'unhealthy_backup_found_empty' => 'There are no backups of this application at all.', + 'unhealthy_backup_found_old' => 'The latest backup made on :date is considered too old.', + 'unhealthy_backup_found_unknown' => 'Sorry, an exact reason cannot be determined.', + 'unhealthy_backup_found_full' => 'The backups are using too much storage. Current usage is :disk_usage which is higher than the allowed limit of :disk_limit.', + + 'no_backups_info' => 'No backups were made yet', + 'application_name' => 'Application name', + 'backup_name' => 'Backup name', + 'disk' => 'Disk', + 'newest_backup_size' => 'Newest backup size', + 'number_of_backups' => 'Number of backups', + 'total_storage_used' => 'Total storage used', + 'newest_backup_date' => 'Newest backup date', + 'oldest_backup_date' => 'Oldest backup date', +]; diff --git a/resources/lang/vendor/backup/es/notifications.php b/resources/lang/vendor/backup/es/notifications.php new file mode 100644 index 000000000..e7078760d --- /dev/null +++ b/resources/lang/vendor/backup/es/notifications.php @@ -0,0 +1,45 @@ + 'Mensaje de la excepción: :message', + 'exception_trace' => 'Traza de la excepción: :trace', + 'exception_message_title' => 'Mensaje de la excepción', + 'exception_trace_title' => 'Traza de la excepción', + + 'backup_failed_subject' => 'Copia de seguridad de :application_name fallida', + 'backup_failed_body' => 'Importante: Ocurrió un error al realizar la copia de seguridad de :application_name', + + 'backup_successful_subject' => 'Se completó con éxito la copia de seguridad de :application_name', + 'backup_successful_subject_title' => '¡Nueva copia de seguridad creada con éxito!', + 'backup_successful_body' => 'Buenas noticias, una nueva copia de seguridad de :application_name fue creada con éxito en el disco llamado :disk_name.', + + 'cleanup_failed_subject' => 'La limpieza de copias de seguridad de :application_name falló.', + 'cleanup_failed_body' => 'Ocurrió un error mientras se realizaba la limpieza de copias de seguridad de :application_name', + + 'cleanup_successful_subject' => 'La limpieza de copias de seguridad de :application_name se completó con éxito', + 'cleanup_successful_subject_title' => '!Limpieza de copias de seguridad completada con éxito!', + 'cleanup_successful_body' => 'La limpieza de copias de seguridad de :application_name en el disco llamado :disk_name se completo con éxito.', + + 'healthy_backup_found_subject' => 'Las copias de seguridad de :application_name en el disco :disk_name están en buen estado', + 'healthy_backup_found_subject_title' => 'Las copias de seguridad de :application_name están en buen estado', + 'healthy_backup_found_body' => 'Las copias de seguridad de :application_name se consideran en buen estado. ¡Buen trabajo!', + + 'unhealthy_backup_found_subject' => 'Importante: Las copias de seguridad de :application_name están en mal estado', + 'unhealthy_backup_found_subject_title' => 'Importante: Las copias de seguridad de :application_name están en mal estado. :problem', + 'unhealthy_backup_found_body' => 'Las copias de seguridad de :application_name en el disco :disk_name están en mal estado.', + 'unhealthy_backup_found_not_reachable' => 'No se puede acceder al destino de la copia de seguridad. :error', + 'unhealthy_backup_found_empty' => 'No existe ninguna copia de seguridad de esta aplicación.', + 'unhealthy_backup_found_old' => 'La última copia de seguriad hecha en :date es demasiado antigua.', + 'unhealthy_backup_found_unknown' => 'Lo siento, no es posible determinar la razón exacta.', + 'unhealthy_backup_found_full' => 'Las copias de seguridad están ocupando demasiado espacio. El espacio utilizado actualmente es :disk_usage el cual es mayor que el límite permitido de :disk_limit.', + + 'no_backups_info' => 'Aún no se hicieron copias de seguridad', + 'application_name' => 'Nombre de la aplicación', + 'backup_name' => 'Nombre de la copia de seguridad', + 'disk' => 'Disco', + 'newest_backup_size' => 'Tamaño de copia de seguridad más reciente', + 'number_of_backups' => 'Número de copias de seguridad', + 'total_storage_used' => 'Almacenamiento total utilizado', + 'newest_backup_date' => 'Fecha de la copia de seguridad más reciente', + 'oldest_backup_date' => 'Fecha de la copia de seguridad más antigua', +]; diff --git a/resources/lang/vendor/backup/fa/notifications.php b/resources/lang/vendor/backup/fa/notifications.php new file mode 100644 index 000000000..580a1f14f --- /dev/null +++ b/resources/lang/vendor/backup/fa/notifications.php @@ -0,0 +1,45 @@ + 'پیغام خطا: :message', + 'exception_trace' => 'جزییات خطا: :trace', + 'exception_message_title' => 'پیغام خطا', + 'exception_trace_title' => 'جزییات خطا', + + 'backup_failed_subject' => 'پشتیبان‌گیری :application_name با خطا مواجه شد.', + 'backup_failed_body' => 'پیغام مهم: هنگام پشتیبان‌گیری از :application_name خطایی رخ داده است. ', + + 'backup_successful_subject' => 'نسخه پشتیبان جدید :application_name با موفقیت ساخته شد.', + 'backup_successful_subject_title' => 'پشتیبان‌گیری موفق!', + 'backup_successful_body' => 'خبر خوب، به تازگی نسخه پشتیبان :application_name روی دیسک :disk_name با موفقیت ساخته شد. ', + + 'cleanup_failed_subject' => 'پاک‌‌سازی نسخه پشتیبان :application_name انجام نشد.', + 'cleanup_failed_body' => 'هنگام پاک‌سازی نسخه پشتیبان :application_name خطایی رخ داده است.', + + 'cleanup_successful_subject' => 'پاک‌سازی نسخه پشتیبان :application_name با موفقیت انجام شد.', + 'cleanup_successful_subject_title' => 'پاک‌سازی نسخه پشتیبان!', + 'cleanup_successful_body' => 'پاک‌سازی نسخه پشتیبان :application_name روی دیسک :disk_name با موفقیت انجام شد.', + + 'healthy_backup_found_subject' => 'نسخه پشتیبان :application_name روی دیسک :disk_name سالم بود.', + 'healthy_backup_found_subject_title' => 'نسخه پشتیبان :application_name سالم بود.', + 'healthy_backup_found_body' => 'نسخه پشتیبان :application_name به نظر سالم میاد. دمت گرم!', + + 'unhealthy_backup_found_subject' => 'خبر مهم: نسخه پشتیبان :application_name سالم نبود.', + 'unhealthy_backup_found_subject_title' => 'خبر مهم: نسخه پشتیبان :application_name سالم نبود. :problem', + 'unhealthy_backup_found_body' => 'نسخه پشتیبان :application_name روی دیسک :disk_name سالم نبود.', + 'unhealthy_backup_found_not_reachable' => 'مقصد پشتیبان‌گیری در دسترس نبود. :error', + 'unhealthy_backup_found_empty' => 'برای این برنامه هیچ نسخه پشتیبانی وجود ندارد.', + 'unhealthy_backup_found_old' => 'آخرین نسخه پشتیبان برای تاریخ :date است، که به نظر خیلی قدیمی میاد. ', + 'unhealthy_backup_found_unknown' => 'متاسفانه دلیل دقیقی قابل تعیین نیست.', + 'unhealthy_backup_found_full' => 'نسخه‌های پشتیبان حجم زیادی اشغال کرده‌اند. میزان دیسک استفاده‌شده :disk_usage است که از میزان مجاز :disk_limit فراتر رفته است. ', + + 'no_backups_info' => 'هنوز نسخه پشتیبان تهیه نشده است', + 'application_name' => 'نام نرم‌افزار', + 'backup_name' => 'نام نسخه پشتیبان', + 'disk' => 'دیسک', + 'newest_backup_size' => 'اندازه جدیدترین نسخه پشتیبان', + 'number_of_backups' => 'تعداد نسخه‌های پشتیبان', + 'total_storage_used' => 'کل فضای ذخیره‌سازی استفاده‌شده', + 'newest_backup_date' => 'تاریخ جدیدترین نسخه پشتیبان', + 'oldest_backup_date' => 'تاریخ قدیمی‌ترین نسخه پشتیبان', +]; diff --git a/resources/lang/vendor/backup/fi/notifications.php b/resources/lang/vendor/backup/fi/notifications.php new file mode 100644 index 000000000..98bec6228 --- /dev/null +++ b/resources/lang/vendor/backup/fi/notifications.php @@ -0,0 +1,45 @@ + 'Virheilmoitus: :message', + 'exception_trace' => 'Virhe, jäljitys: :trace', + 'exception_message_title' => 'Virheilmoitus', + 'exception_trace_title' => 'Virheen jäljitys', + + 'backup_failed_subject' => ':application_name varmuuskopiointi epäonnistui', + 'backup_failed_body' => 'HUOM!: :application_name varmuuskoipionnissa tapahtui virhe', + + 'backup_successful_subject' => ':application_name varmuuskopioitu onnistuneesti', + 'backup_successful_subject_title' => 'Uusi varmuuskopio!', + 'backup_successful_body' => 'Hyviä uutisia! :application_name on varmuuskopioitu levylle :disk_name.', + + 'cleanup_failed_subject' => ':application_name varmuuskopioiden poistaminen epäonnistui.', + 'cleanup_failed_body' => ':application_name varmuuskopioiden poistamisessa tapahtui virhe.', + + 'cleanup_successful_subject' => ':application_name varmuuskopiot poistettu onnistuneesti', + 'cleanup_successful_subject_title' => 'Varmuuskopiot poistettu onnistuneesti!', + 'cleanup_successful_body' => ':application_name varmuuskopiot poistettu onnistuneesti levyltä :disk_name.', + + 'healthy_backup_found_subject' => ':application_name varmuuskopiot levyllä :disk_name ovat kunnossa', + 'healthy_backup_found_subject_title' => ':application_name varmuuskopiot ovat kunnossa', + 'healthy_backup_found_body' => ':application_name varmuuskopiot ovat kunnossa. Hieno homma!', + + 'unhealthy_backup_found_subject' => 'HUOM!: :application_name varmuuskopiot ovat vialliset', + 'unhealthy_backup_found_subject_title' => 'HUOM!: :application_name varmuuskopiot ovat vialliset. :problem', + 'unhealthy_backup_found_body' => ':application_name varmuuskopiot levyllä :disk_name ovat vialliset.', + 'unhealthy_backup_found_not_reachable' => 'Varmuuskopioiden kohdekansio ei ole saatavilla. :error', + 'unhealthy_backup_found_empty' => 'Tästä sovelluksesta ei ole varmuuskopioita.', + 'unhealthy_backup_found_old' => 'Viimeisin varmuuskopio, luotu :date, on liian vanha.', + 'unhealthy_backup_found_unknown' => 'Virhe, tarkempaa tietoa syystä ei valitettavasti ole saatavilla.', + 'unhealthy_backup_found_full' => 'Varmuuskopiot vievät liikaa levytilaa. Tällä hetkellä käytössä :disk_usage, mikä on suurempi kuin sallittu tilavuus (:disk_limit).', + + 'no_backups_info' => 'Varmuuskopioita ei vielä tehty', + 'application_name' => 'Sovelluksen nimi', + 'backup_name' => 'Varmuuskopion nimi', + 'disk' => 'Levy', + 'newest_backup_size' => 'Uusin varmuuskopion koko', + 'number_of_backups' => 'Varmuuskopioiden määrä', + 'total_storage_used' => 'Käytetty tallennustila yhteensä', + 'newest_backup_date' => 'Uusin varmuuskopion koko', + 'oldest_backup_date' => 'Vanhin varmuuskopion koko', +]; diff --git a/resources/lang/vendor/backup/fr/notifications.php b/resources/lang/vendor/backup/fr/notifications.php new file mode 100644 index 000000000..2ae497658 --- /dev/null +++ b/resources/lang/vendor/backup/fr/notifications.php @@ -0,0 +1,45 @@ + 'Message de l\'exception : :message', + 'exception_trace' => 'Trace de l\'exception : :trace', + 'exception_message_title' => 'Message de l\'exception', + 'exception_trace_title' => 'Trace de l\'exception', + + 'backup_failed_subject' => 'Échec de la sauvegarde de :application_name', + 'backup_failed_body' => 'Important : Une erreur est survenue lors de la sauvegarde de :application_name', + + 'backup_successful_subject' => 'Succès de la sauvegarde de :application_name', + 'backup_successful_subject_title' => 'Sauvegarde créée avec succès !', + 'backup_successful_body' => 'Bonne nouvelle, une nouvelle sauvegarde de :application_name a été créée avec succès sur le disque nommé :disk_name.', + + 'cleanup_failed_subject' => 'Le nettoyage des sauvegardes de :application_name a echoué.', + 'cleanup_failed_body' => 'Une erreur est survenue lors du nettoyage des sauvegardes de :application_name', + + 'cleanup_successful_subject' => 'Succès du nettoyage des sauvegardes de :application_name', + 'cleanup_successful_subject_title' => 'Sauvegardes nettoyées avec succès !', + 'cleanup_successful_body' => 'Le nettoyage des sauvegardes de :application_name sur le disque nommé :disk_name a été effectué avec succès.', + + 'healthy_backup_found_subject' => 'Les sauvegardes pour :application_name sur le disque :disk_name sont saines', + 'healthy_backup_found_subject_title' => 'Les sauvegardes pour :application_name sont saines', + 'healthy_backup_found_body' => 'Les sauvegardes pour :application_name sont considérées saines. Bon travail !', + + 'unhealthy_backup_found_subject' => 'Important : Les sauvegardes pour :application_name sont corrompues', + 'unhealthy_backup_found_subject_title' => 'Important : Les sauvegardes pour :application_name sont corrompues. :problem', + 'unhealthy_backup_found_body' => 'Les sauvegardes pour :application_name sur le disque :disk_name sont corrompues.', + 'unhealthy_backup_found_not_reachable' => 'La destination de la sauvegarde n\'est pas accessible. :error', + 'unhealthy_backup_found_empty' => 'Il n\'y a aucune sauvegarde pour cette application.', + 'unhealthy_backup_found_old' => 'La dernière sauvegarde du :date est considérée trop vieille.', + 'unhealthy_backup_found_unknown' => 'Désolé, une raison exacte ne peut être déterminée.', + 'unhealthy_backup_found_full' => 'Les sauvegardes utilisent trop d\'espace disque. L\'utilisation actuelle est de :disk_usage alors que la limite autorisée est de :disk_limit.', + + 'no_backups_info' => 'Aucune sauvegarde n\'a encore été effectuée', + 'application_name' => 'Nom de l\'application', + 'backup_name' => 'Nom de la sauvegarde', + 'disk' => 'Disque', + 'newest_backup_size' => 'Taille de la sauvegarde la plus récente', + 'number_of_backups' => 'Nombre de sauvegardes', + 'total_storage_used' => 'Stockage total utilisé', + 'newest_backup_date' => 'Date de la sauvegarde la plus récente', + 'oldest_backup_date' => 'Date de la sauvegarde la plus ancienne', +]; diff --git a/resources/lang/vendor/backup/he/notifications.php b/resources/lang/vendor/backup/he/notifications.php new file mode 100644 index 000000000..db3b35ff9 --- /dev/null +++ b/resources/lang/vendor/backup/he/notifications.php @@ -0,0 +1,45 @@ + 'הודעת חריגה: :message', + 'exception_trace' => 'מעקב חריגה: :trace', + 'exception_message_title' => 'הודעת חריגה', + 'exception_trace_title' => 'מעקב חריגה', + + 'backup_failed_subject' => 'כשל בגיבוי של :application_name', + 'backup_failed_body' => 'חשוב: אירעה שגיאה במהלך גיבוי היישום :application_name', + + 'backup_successful_subject' => 'גיבוי חדש מוצלח של :application_name', + 'backup_successful_subject_title' => 'גיבוי חדש מוצלח!', + 'backup_successful_body' => 'חדשות טובות, גיבוי חדש של :application_name נוצר בהצלחה על הדיסק בשם :disk_name.', + + 'cleanup_failed_subject' => 'נכשל בניקוי הגיבויים של :application_name', + 'cleanup_failed_body' => 'אירעה שגיאה במהלך ניקוי הגיבויים של :application_name', + + 'cleanup_successful_subject' => 'ניקוי הגיבויים של :application_name בוצע בהצלחה', + 'cleanup_successful_subject_title' => 'ניקוי הגיבויים בוצע בהצלחה!', + 'cleanup_successful_body' => 'ניקוי הגיבויים של :application_name על הדיסק בשם :disk_name בוצע בהצלחה.', + + 'healthy_backup_found_subject' => 'הגיבויים של :application_name על הדיסק :disk_name תקינים', + 'healthy_backup_found_subject_title' => 'הגיבויים של :application_name תקינים', + 'healthy_backup_found_body' => 'הגיבויים של :application_name נחשבים לתקינים. עבודה טובה!', + + 'unhealthy_backup_found_subject' => 'חשוב: הגיבויים של :application_name אינם תקינים', + 'unhealthy_backup_found_subject_title' => 'חשוב: הגיבויים של :application_name אינם תקינים. :problem', + 'unhealthy_backup_found_body' => 'הגיבויים של :application_name על הדיסק :disk_name אינם תקינים.', + 'unhealthy_backup_found_not_reachable' => 'לא ניתן להגיע ליעד הגיבוי. :error', + 'unhealthy_backup_found_empty' => 'אין גיבויים של היישום הזה בכלל.', + 'unhealthy_backup_found_old' => 'הגיבוי האחרון שנעשה בתאריך :date נחשב כישן מדי.', + 'unhealthy_backup_found_unknown' => 'מצטערים, לא ניתן לקבוע סיבה מדויקת.', + 'unhealthy_backup_found_full' => 'הגיבויים משתמשים בשטח אחסון רב מידי. שימוש הנוכחי הוא :disk_usage, שגבול המותר הוא :disk_limit.', + + 'no_backups_info' => 'לא נעשו עדיין גיבויים', + 'application_name' => 'שם היישום', + 'backup_name' => 'שם הגיבוי', + 'disk' => 'דיסק', + 'newest_backup_size' => 'גודל הגיבוי החדש ביותר', + 'number_of_backups' => 'מספר הגיבויים', + 'total_storage_used' => 'סך האחסון המופעל', + 'newest_backup_date' => 'תאריך הגיבוי החדש ביותר', + 'oldest_backup_date' => 'תאריך הגיבוי הישן ביותר', +]; diff --git a/resources/lang/vendor/backup/hi/notifications.php b/resources/lang/vendor/backup/hi/notifications.php new file mode 100644 index 000000000..f8128674f --- /dev/null +++ b/resources/lang/vendor/backup/hi/notifications.php @@ -0,0 +1,45 @@ + 'अपवाद संदेश: :message', + 'exception_trace' => 'अपवाद निशान: :trace', + 'exception_message_title' => 'अपवादी संदेश', + 'exception_trace_title' => 'अपवाद निशान', + + 'backup_failed_subject' => ':application_name का बैकअप असफल रहा', + 'backup_failed_body' => 'जरूरी सुचना: :application_name का बैकअप लेते समय असफल रहे', + + 'backup_successful_subject' => ':application_name का बैकअप सफल रहा', + 'backup_successful_subject_title' => 'बैकअप सफल रहा!', + 'backup_successful_body' => 'खुशखबर, :application_name का बैकअप :disk_name पर संग्रहित करने मे सफल रहे.', + + 'cleanup_failed_subject' => ':application_name के बैकअप की सफाई असफल रही.', + 'cleanup_failed_body' => ':application_name के बैकअप की सफाई करते समय कुछ बाधा आयी है.', + + 'cleanup_successful_subject' => ':application_name के बैकअप की सफाई सफल रही', + 'cleanup_successful_subject_title' => 'बैकअप की सफाई सफल रही!', + 'cleanup_successful_body' => ':application_name का बैकअप जो :disk_name नाम की डिस्क पर संग्रहित है, उसकी सफाई सफल रही.', + + 'healthy_backup_found_subject' => ':disk_name नाम की डिस्क पर संग्रहित :application_name के बैकअप स्वस्थ है', + 'healthy_backup_found_subject_title' => ':application_name के सभी बैकअप स्वस्थ है', + 'healthy_backup_found_body' => 'बहुत बढ़िया! :application_name के सभी बैकअप स्वस्थ है.', + + 'unhealthy_backup_found_subject' => 'जरूरी सुचना : :application_name के बैकअप अस्वस्थ है', + 'unhealthy_backup_found_subject_title' => 'जरूरी सुचना : :application_name के बैकअप :problem के बजेसे अस्वस्थ है', + 'unhealthy_backup_found_body' => ':disk_name नाम की डिस्क पर संग्रहित :application_name के बैकअप अस्वस्थ है', + 'unhealthy_backup_found_not_reachable' => ':error के बजेसे बैकअप की मंजिल तक पोहोच नहीं सकते.', + 'unhealthy_backup_found_empty' => 'इस एप्लीकेशन का कोई भी बैकअप नहीं है.', + 'unhealthy_backup_found_old' => 'हालहीमें :date को लिया हुआ बैकअप बहुत पुराना है.', + 'unhealthy_backup_found_unknown' => 'माफ़ कीजिये, सही कारण निर्धारित नहीं कर सकते.', + 'unhealthy_backup_found_full' => 'सभी बैकअप बहुत ज्यादा जगह का उपयोग कर रहे है. फ़िलहाल सभी बैकअप :disk_usage जगह का उपयोग कर रहे है, जो की :disk_limit अनुमति सीमा से अधिक का है.', + + 'no_backups_info' => 'अभी तक कोई बैकअप नहीं बनाया गया था', + 'application_name' => 'आवेदन का नाम', + 'backup_name' => 'बैकअप नाम', + 'disk' => 'डिस्क', + 'newest_backup_size' => 'नवीनतम बैकअप आकार', + 'number_of_backups' => 'बैकअप की संख्या', + 'total_storage_used' => 'उपयोग किया गया कुल संग्रहण', + 'newest_backup_date' => 'नवीनतम बैकअप आकार', + 'oldest_backup_date' => 'सबसे पुराना बैकअप आकार', +]; diff --git a/resources/lang/vendor/backup/hr/notifications.php b/resources/lang/vendor/backup/hr/notifications.php new file mode 100644 index 000000000..0b12bfd9e --- /dev/null +++ b/resources/lang/vendor/backup/hr/notifications.php @@ -0,0 +1,45 @@ + 'Greška: :message', + 'exception_trace' => 'Praćenje greške: :trace', + 'exception_message_title' => 'Greška', + 'exception_trace_title' => 'Praćenje greške', + + 'backup_failed_subject' => 'Neuspješno sigurnosno kopiranje za :application_name', + 'backup_failed_body' => 'Važno: Došlo je do greške prilikom sigurnosnog kopiranja za :application_name', + + 'backup_successful_subject' => 'Uspješno sigurnosno kopiranje za :application_name', + 'backup_successful_subject_title' => 'Uspješno sigurnosno kopiranje!', + 'backup_successful_body' => 'Nova sigurnosna kopija za :application_name je uspješno spremljena na disk :disk_name.', + + 'cleanup_failed_subject' => 'Neuspješno čišćenje sigurnosnih kopija za :application_name', + 'cleanup_failed_body' => 'Došlo je do greške prilikom čišćenja sigurnosnih kopija za :application_name', + + 'cleanup_successful_subject' => 'Uspješno čišćenje sigurnosnih kopija za :application_name', + 'cleanup_successful_subject_title' => 'Uspješno čišćenje sigurnosnih kopija!', + 'cleanup_successful_body' => 'Sigurnosne kopije za :application_name su uspješno očišćene s diska :disk_name.', + + 'healthy_backup_found_subject' => 'Sigurnosne kopije za :application_name na disku :disk_name su zdrave', + 'healthy_backup_found_subject_title' => 'Sigurnosne kopije za :application_name su zdrave', + 'healthy_backup_found_body' => 'Sigurnosne kopije za :application_name se smatraju zdravima. Svaka čast!', + + 'unhealthy_backup_found_subject' => 'Važno: Sigurnosne kopije za :application_name su nezdrave', + 'unhealthy_backup_found_subject_title' => 'Važno: Sigurnosne kopije za :application_name su nezdrave. :problem', + 'unhealthy_backup_found_body' => 'Sigurnosne kopije za :application_name na disku :disk_name su nezdrave.', + 'unhealthy_backup_found_not_reachable' => 'Destinacija sigurnosne kopije nije dohvatljiva. :error', + 'unhealthy_backup_found_empty' => 'Nijedna sigurnosna kopija ove aplikacije ne postoji.', + 'unhealthy_backup_found_old' => 'Zadnja sigurnosna kopija generirana na datum :date smatra se prestarom.', + 'unhealthy_backup_found_unknown' => 'Isprike, ali nije moguće odrediti razlog.', + 'unhealthy_backup_found_full' => 'Sigurnosne kopije zauzimaju previše prostora. Trenutno zauzeće je :disk_usage što je više od dozvoljenog ograničenja od :disk_limit.', + + 'no_backups_info' => 'Nema sigurnosnih kopija', + 'application_name' => 'Naziv aplikacije', + 'backup_name' => 'Naziv sigurnosne kopije', + 'disk' => 'Disk', + 'newest_backup_size' => 'Veličina najnovije sigurnosne kopije', + 'number_of_backups' => 'Broj sigurnosnih kopija', + 'total_storage_used' => 'Ukupno zauzeće', + 'newest_backup_date' => 'Najnovija kopija na datum', + 'oldest_backup_date' => 'Najstarija kopija na datum', +]; diff --git a/resources/lang/vendor/backup/id/notifications.php b/resources/lang/vendor/backup/id/notifications.php new file mode 100644 index 000000000..12364b523 --- /dev/null +++ b/resources/lang/vendor/backup/id/notifications.php @@ -0,0 +1,45 @@ + 'Pesan pengecualian: :message', + 'exception_trace' => 'Jejak pengecualian: :trace', + 'exception_message_title' => 'Pesan pengecualian', + 'exception_trace_title' => 'Jejak pengecualian', + + 'backup_failed_subject' => 'Gagal backup :application_name', + 'backup_failed_body' => 'Penting: Sebuah error terjadi ketika membackup :application_name', + + 'backup_successful_subject' => 'Backup baru sukses dari :application_name', + 'backup_successful_subject_title' => 'Backup baru sukses!', + 'backup_successful_body' => 'Kabar baik, sebuah backup baru dari :application_name sukses dibuat pada disk bernama :disk_name.', + + 'cleanup_failed_subject' => 'Membersihkan backup dari :application_name yang gagal.', + 'cleanup_failed_body' => 'Sebuah error teradi ketika membersihkan backup dari :application_name', + + 'cleanup_successful_subject' => 'Sukses membersihkan backup :application_name', + 'cleanup_successful_subject_title' => 'Sukses membersihkan backup!', + 'cleanup_successful_body' => 'Pembersihan backup :application_name pada disk bernama :disk_name telah sukses.', + + 'healthy_backup_found_subject' => 'Backup untuk :application_name pada disk :disk_name sehat', + 'healthy_backup_found_subject_title' => 'Backup untuk :application_name sehat', + 'healthy_backup_found_body' => 'Backup untuk :application_name dipertimbangkan sehat. Kerja bagus!', + + 'unhealthy_backup_found_subject' => 'Penting: Backup untuk :application_name tidak sehat', + 'unhealthy_backup_found_subject_title' => 'Penting: Backup untuk :application_name tidak sehat. :problem', + 'unhealthy_backup_found_body' => 'Backup untuk :application_name pada disk :disk_name tidak sehat.', + 'unhealthy_backup_found_not_reachable' => 'Tujuan backup tidak dapat terjangkau. :error', + 'unhealthy_backup_found_empty' => 'Tidak ada backup pada aplikasi ini sama sekali.', + 'unhealthy_backup_found_old' => 'Backup terakhir dibuat pada :date dimana dipertimbahkan sudah sangat lama.', + 'unhealthy_backup_found_unknown' => 'Maaf, sebuah alasan persisnya tidak dapat ditentukan.', + 'unhealthy_backup_found_full' => 'Backup menggunakan terlalu banyak kapasitas penyimpanan. Penggunaan terkini adalah :disk_usage dimana lebih besar dari batas yang diperbolehkan yaitu :disk_limit.', + + 'no_backups_info' => 'Belum ada backup yang dibuat', + 'application_name' => 'Nama aplikasi', + 'backup_name' => 'Nama cadangan', + 'disk' => 'Disk', + 'newest_backup_size' => 'Ukuran cadangan terbaru', + 'number_of_backups' => 'Jumlah cadangan', + 'total_storage_used' => 'Total penyimpanan yang digunakan', + 'newest_backup_date' => 'Ukuran cadangan terbaru', + 'oldest_backup_date' => 'Ukuran cadangan tertua', +]; diff --git a/resources/lang/vendor/backup/it/notifications.php b/resources/lang/vendor/backup/it/notifications.php new file mode 100644 index 000000000..94fe14157 --- /dev/null +++ b/resources/lang/vendor/backup/it/notifications.php @@ -0,0 +1,45 @@ + 'Messaggio dell\'eccezione: :message', + 'exception_trace' => 'Traccia dell\'eccezione: :trace', + 'exception_message_title' => 'Messaggio dell\'eccezione', + 'exception_trace_title' => 'Traccia dell\'eccezione', + + 'backup_failed_subject' => 'Fallito il backup di :application_name', + 'backup_failed_body' => 'Importante: Si è verificato un errore durante il backup di :application_name', + + 'backup_successful_subject' => 'Creato nuovo backup di :application_name', + 'backup_successful_subject_title' => 'Nuovo backup creato!', + 'backup_successful_body' => 'Grande notizia, un nuovo backup di :application_name è stato creato con successo sul disco :disk_name.', + + 'cleanup_failed_subject' => 'Pulizia dei backup di :application_name fallita.', + 'cleanup_failed_body' => 'Si è verificato un errore durante la pulizia dei backup di :application_name', + + 'cleanup_successful_subject' => 'Pulizia dei backup di :application_name avvenuta con successo', + 'cleanup_successful_subject_title' => 'Pulizia dei backup avvenuta con successo!', + 'cleanup_successful_body' => 'La pulizia dei backup di :application_name sul disco :disk_name è avvenuta con successo.', + + 'healthy_backup_found_subject' => 'I backup per :application_name sul disco :disk_name sono sani', + 'healthy_backup_found_subject_title' => 'I backup per :application_name sono sani', + 'healthy_backup_found_body' => 'I backup per :application_name sono considerati sani. Bel Lavoro!', + + 'unhealthy_backup_found_subject' => 'Importante: i backup per :application_name sono corrotti', + 'unhealthy_backup_found_subject_title' => 'Importante: i backup per :application_name sono corrotti. :problem', + 'unhealthy_backup_found_body' => 'I backup per :application_name sul disco :disk_name sono corrotti.', + 'unhealthy_backup_found_not_reachable' => 'Impossibile raggiungere la destinazione di backup. :error', + 'unhealthy_backup_found_empty' => 'Non esiste alcun backup di questa applicazione.', + 'unhealthy_backup_found_old' => 'L\'ultimo backup fatto il :date è considerato troppo vecchio.', + 'unhealthy_backup_found_unknown' => 'Spiacenti, non è possibile determinare una ragione esatta.', + 'unhealthy_backup_found_full' => 'I backup utilizzano troppa memoria. L\'utilizzo corrente è :disk_usage che è superiore al limite consentito di :disk_limit.', + + 'no_backups_info' => 'Non sono stati ancora effettuati backup', + 'application_name' => 'Nome dell\'applicazione', + 'backup_name' => 'Nome di backup', + 'disk' => 'Disco', + 'newest_backup_size' => 'Dimensione backup più recente', + 'number_of_backups' => 'Numero di backup', + 'total_storage_used' => 'Spazio di archiviazione totale utilizzato', + 'newest_backup_date' => 'Data del backup più recente', + 'oldest_backup_date' => 'Data del backup più vecchio', +]; diff --git a/resources/lang/vendor/backup/ja/notifications.php b/resources/lang/vendor/backup/ja/notifications.php new file mode 100644 index 000000000..1b57ca362 --- /dev/null +++ b/resources/lang/vendor/backup/ja/notifications.php @@ -0,0 +1,45 @@ + '例外のメッセージ: :message', + 'exception_trace' => '例外の追跡: :trace', + 'exception_message_title' => '例外のメッセージ', + 'exception_trace_title' => '例外の追跡', + + 'backup_failed_subject' => ':application_name のバックアップに失敗しました。', + 'backup_failed_body' => '重要: :application_name のバックアップ中にエラーが発生しました。', + + 'backup_successful_subject' => ':application_name のバックアップに成功しました。', + 'backup_successful_subject_title' => 'バックアップに成功しました!', + 'backup_successful_body' => '朗報です。ディスク :disk_name へ :application_name のバックアップが成功しました。', + + 'cleanup_failed_subject' => ':application_name のバックアップ削除に失敗しました。', + 'cleanup_failed_body' => ':application_name のバックアップ削除中にエラーが発生しました。', + + 'cleanup_successful_subject' => ':application_name のバックアップ削除に成功しました。', + 'cleanup_successful_subject_title' => 'バックアップ削除に成功しました!', + 'cleanup_successful_body' => 'ディスク :disk_name に保存された :application_name のバックアップ削除に成功しました。', + + 'healthy_backup_found_subject' => 'ディスク :disk_name への :application_name のバックアップは正常です。', + 'healthy_backup_found_subject_title' => ':application_name のバックアップは正常です。', + 'healthy_backup_found_body' => ':application_name へのバックアップは正常です。いい仕事してますね!', + + 'unhealthy_backup_found_subject' => '重要: :application_name のバックアップに異常があります。', + 'unhealthy_backup_found_subject_title' => '重要: :application_name のバックアップに異常があります。 :problem', + 'unhealthy_backup_found_body' => ':disk_name への :application_name のバックアップに異常があります。', + 'unhealthy_backup_found_not_reachable' => 'バックアップ先にアクセスできませんでした。 :error', + 'unhealthy_backup_found_empty' => 'このアプリケーションのバックアップは見つかりませんでした。', + 'unhealthy_backup_found_old' => ':date に保存された直近のバックアップが古すぎます。', + 'unhealthy_backup_found_unknown' => '申し訳ございません。予期せぬエラーです。', + 'unhealthy_backup_found_full' => 'バックアップがディスク容量を圧迫しています。現在の使用量 :disk_usage は、許可された限界値 :disk_limit を超えています。', + + 'no_backups_info' => 'バックアップはまだ作成されていません', + 'application_name' => 'アプリケーション名', + 'backup_name' => 'バックアップ名', + 'disk' => 'ディスク', + 'newest_backup_size' => '最新のバックアップサイズ', + 'number_of_backups' => 'バックアップ数', + 'total_storage_used' => '使用された合計ストレージ', + 'newest_backup_date' => '最新のバックアップ日時', + 'oldest_backup_date' => '最も古いバックアップ日時', +]; diff --git a/resources/lang/vendor/backup/ko/notifications.php b/resources/lang/vendor/backup/ko/notifications.php new file mode 100644 index 000000000..d13c0f962 --- /dev/null +++ b/resources/lang/vendor/backup/ko/notifications.php @@ -0,0 +1,45 @@ + '예외 메시지: :message', + 'exception_trace' => '예외 추적: :trace', + 'exception_message_title' => '예외 메시지', + 'exception_trace_title' => '예외 추적', + + 'backup_failed_subject' => ':application_name 백업 실패', + 'backup_failed_body' => '중요: :application_name 백업 중 오류 발생', + + 'backup_successful_subject' => ':application_name 백업 성공', + 'backup_successful_subject_title' => '백업이 성공적으로 완료되었습니다!', + 'backup_successful_body' => '좋은 소식입니다. :disk_name 디스크에 :application_name 백업이 성공적으로 완료되었습니다.', + + 'cleanup_failed_subject' => ':application_name 백업 정리 실패', + 'cleanup_failed_body' => ':application_name 백업 정리 중 오류 발생', + + 'cleanup_successful_subject' => ':application_name 백업 정리 성공', + 'cleanup_successful_subject_title' => '백업 정리가 성공적으로 완료되었습니다!', + 'cleanup_successful_body' => ':disk_name 디스크에 저장된 :application_name 백업 정리가 성공적으로 완료되었습니다.', + + 'healthy_backup_found_subject' => ':application_name 백업은 정상입니다.', + 'healthy_backup_found_subject_title' => ':application_name 백업은 정상입니다.', + 'healthy_backup_found_body' => ':application_name 백업은 정상입니다. 수고하셨습니다!', + + 'unhealthy_backup_found_subject' => '중요: :application_name 백업에 문제가 있습니다.', + 'unhealthy_backup_found_subject_title' => '중요: :application_name 백업에 문제가 있습니다. :problem', + 'unhealthy_backup_found_body' => ':disk_name 디스크에 :application_name 백업에 문제가 있습니다.', + 'unhealthy_backup_found_not_reachable' => '백업 위치에 액세스할 수 없습니다. :error', + 'unhealthy_backup_found_empty' => '이 애플리케이션에는 백업이 없습니다.', + 'unhealthy_backup_found_old' => ':date에 저장된 최신 백업이 너무 오래되었습니다.', + 'unhealthy_backup_found_unknown' => '죄송합니다. 예기치 않은 오류가 발생했습니다.', + 'unhealthy_backup_found_full' => '백업이 디스크 공간을 다 차지하고 있습니다. 현재 사용량 :disk_usage는 허용 한도 :disk_limit을 초과합니다.', + + 'no_backups_info' => '아직 백업이 생성되지 않았습니다.', + 'application_name' => '애플리케이션 이름', + 'backup_name' => '백업 이름', + 'disk' => '디스크', + 'newest_backup_size' => '최신 백업 크기', + 'number_of_backups' => '백업 수', + 'total_storage_used' => '총 사용 스토리지', + 'newest_backup_date' => '최신 백업 날짜', + 'oldest_backup_date' => '가장 오래된 백업 날짜', +]; diff --git a/resources/lang/vendor/backup/nl/notifications.php b/resources/lang/vendor/backup/nl/notifications.php new file mode 100644 index 000000000..4887cbfe1 --- /dev/null +++ b/resources/lang/vendor/backup/nl/notifications.php @@ -0,0 +1,45 @@ + 'Fout bericht: :message', + 'exception_trace' => 'Fout trace: :trace', + 'exception_message_title' => 'Fout bericht', + 'exception_trace_title' => 'Fout trace', + + 'backup_failed_subject' => 'Back-up van :application_name mislukt', + 'backup_failed_body' => 'Belangrijk: Er ging iets fout tijdens het maken van een back-up van :application_name', + + 'backup_successful_subject' => 'Succesvolle nieuwe back-up van :application_name', + 'backup_successful_subject_title' => 'Succesvolle nieuwe back-up!', + 'backup_successful_body' => 'Goed nieuws, een nieuwe back-up van :application_name was succesvol aangemaakt op de schijf genaamd :disk_name.', + + 'cleanup_failed_subject' => 'Het opschonen van de back-ups van :application_name is mislukt.', + 'cleanup_failed_body' => 'Er ging iets fout tijdens het opschonen van de back-ups van :application_name', + + 'cleanup_successful_subject' => 'Opschonen van :application_name back-ups was succesvol.', + 'cleanup_successful_subject_title' => 'Opschonen van back-ups was succesvol!', + 'cleanup_successful_body' => 'Het opschonen van de :application_name back-ups op de schijf genaamd :disk_name was succesvol.', + + 'healthy_backup_found_subject' => 'De back-ups voor :application_name op schijf :disk_name zijn gezond', + 'healthy_backup_found_subject_title' => 'De back-ups voor :application_name zijn gezond', + 'healthy_backup_found_body' => 'De back-ups voor :application_name worden als gezond beschouwd. Goed gedaan!', + + 'unhealthy_backup_found_subject' => 'Belangrijk: De back-ups voor :application_name zijn niet meer gezond', + 'unhealthy_backup_found_subject_title' => 'Belangrijk: De back-ups voor :application_name zijn niet gezond. :problem', + 'unhealthy_backup_found_body' => 'De back-ups voor :application_name op schijf :disk_name zijn niet gezond.', + 'unhealthy_backup_found_not_reachable' => 'De back-upbestemming kon niet worden bereikt. :error', + 'unhealthy_backup_found_empty' => 'Er zijn geen back-ups van deze applicatie beschikbaar.', + 'unhealthy_backup_found_old' => 'De laatste back-up gemaakt op :date is te oud.', + 'unhealthy_backup_found_unknown' => 'Sorry, een exacte reden kon niet worden bepaald.', + 'unhealthy_backup_found_full' => 'De back-ups gebruiken te veel opslagruimte. Momenteel wordt er :disk_usage gebruikt wat hoger is dan de toegestane limiet van :disk_limit.', + + 'no_backups_info' => 'Er zijn nog geen back-ups gemaakt', + 'application_name' => 'Naam van de toepassing', + 'backup_name' => 'Back-upnaam', + 'disk' => 'Schijf', + 'newest_backup_size' => 'Nieuwste back-upgrootte', + 'number_of_backups' => 'Aantal back-ups', + 'total_storage_used' => 'Totale gebruikte opslagruimte', + 'newest_backup_date' => 'Datum nieuwste back-up', + 'oldest_backup_date' => 'Datum oudste back-up', +]; diff --git a/resources/lang/vendor/backup/no/notifications.php b/resources/lang/vendor/backup/no/notifications.php new file mode 100644 index 000000000..e1d70192d --- /dev/null +++ b/resources/lang/vendor/backup/no/notifications.php @@ -0,0 +1,45 @@ + 'Exception: :message', + 'exception_trace' => 'Exception trace: :trace', + 'exception_message_title' => 'Exception', + 'exception_trace_title' => 'Exception trace', + + 'backup_failed_subject' => 'Backup feilet for :application_name', + 'backup_failed_body' => 'Viktg: En feil oppstod under backing av :application_name', + + 'backup_successful_subject' => 'Gjennomført backup av :application_name', + 'backup_successful_subject_title' => 'Gjennomført backup!', + 'backup_successful_body' => 'Gode nyheter, en ny backup av :application_name ble opprettet på disken :disk_name.', + + 'cleanup_failed_subject' => 'Opprydding av backup for :application_name feilet.', + 'cleanup_failed_body' => 'En feil oppstod under opprydding av backups for :application_name', + + 'cleanup_successful_subject' => 'Opprydding av backup for :application_name gjennomført', + 'cleanup_successful_subject_title' => 'Opprydding av backup gjennomført!', + 'cleanup_successful_body' => 'Oppryddingen av backup for :application_name på disken :disk_name har blitt gjennomført.', + + 'healthy_backup_found_subject' => 'Alle backups for :application_name på disken :disk_name er OK', + 'healthy_backup_found_subject_title' => 'Alle backups for :application_name er OK', + 'healthy_backup_found_body' => 'Alle backups for :application_name er ok. Godt jobba!', + + 'unhealthy_backup_found_subject' => 'Viktig: Backups for :application_name ikke OK', + 'unhealthy_backup_found_subject_title' => 'Viktig: Backups for :application_name er ikke OK. :problem', + 'unhealthy_backup_found_body' => 'Backups for :application_name på disken :disk_name er ikke OK.', + 'unhealthy_backup_found_not_reachable' => 'Kunne ikke finne backup-destinasjonen. :error', + 'unhealthy_backup_found_empty' => 'Denne applikasjonen mangler backups.', + 'unhealthy_backup_found_old' => 'Den siste backupem fra :date er for gammel.', + 'unhealthy_backup_found_unknown' => 'Beklager, kunne ikke finne nøyaktig årsak.', + 'unhealthy_backup_found_full' => 'Backups bruker for mye lagringsplass. Nåværende diskbruk er :disk_usage, som er mer enn den tillatte grensen på :disk_limit.', + + 'no_backups_info' => 'Ingen sikkerhetskopier ble gjort ennå', + 'application_name' => 'Programnavn', + 'backup_name' => 'Navn på sikkerhetskopi', + 'disk' => 'Disk', + 'newest_backup_size' => 'Nyeste backup-størrelse', + 'number_of_backups' => 'Antall sikkerhetskopier', + 'total_storage_used' => 'Total lagring brukt', + 'newest_backup_date' => 'Nyeste backup-størrelse', + 'oldest_backup_date' => 'Eldste sikkerhetskopistørrelse', +]; diff --git a/resources/lang/vendor/backup/pl/notifications.php b/resources/lang/vendor/backup/pl/notifications.php new file mode 100644 index 000000000..5e7990220 --- /dev/null +++ b/resources/lang/vendor/backup/pl/notifications.php @@ -0,0 +1,45 @@ + 'Błąd: :message', + 'exception_trace' => 'Zrzut błędu: :trace', + 'exception_message_title' => 'Błąd', + 'exception_trace_title' => 'Zrzut błędu', + + 'backup_failed_subject' => 'Tworzenie kopii zapasowej aplikacji :application_name nie powiodło się', + 'backup_failed_body' => 'Ważne: Wystąpił błąd podczas tworzenia kopii zapasowej aplikacji :application_name', + + 'backup_successful_subject' => 'Pomyślnie utworzono kopię zapasową aplikacji :application_name', + 'backup_successful_subject_title' => 'Nowa kopia zapasowa!', + 'backup_successful_body' => 'Wspaniała wiadomość, nowa kopia zapasowa aplikacji :application_name została pomyślnie utworzona na dysku o nazwie :disk_name.', + + 'cleanup_failed_subject' => 'Czyszczenie kopii zapasowych aplikacji :application_name nie powiodło się.', + 'cleanup_failed_body' => 'Wystąpił błąd podczas czyszczenia kopii zapasowej aplikacji :application_name', + + 'cleanup_successful_subject' => 'Kopie zapasowe aplikacji :application_name zostały pomyślnie wyczyszczone', + 'cleanup_successful_subject_title' => 'Kopie zapasowe zostały pomyślnie wyczyszczone!', + 'cleanup_successful_body' => 'Czyszczenie kopii zapasowych aplikacji :application_name na dysku :disk_name zakończone sukcesem.', + + 'healthy_backup_found_subject' => 'Kopie zapasowe aplikacji :application_name na dysku :disk_name są poprawne', + 'healthy_backup_found_subject_title' => 'Kopie zapasowe aplikacji :application_name są poprawne', + 'healthy_backup_found_body' => 'Kopie zapasowe aplikacji :application_name są poprawne. Dobra robota!', + + 'unhealthy_backup_found_subject' => 'Ważne: Kopie zapasowe aplikacji :application_name są niepoprawne', + 'unhealthy_backup_found_subject_title' => 'Ważne: Kopie zapasowe aplikacji :application_name są niepoprawne. :problem', + 'unhealthy_backup_found_body' => 'Kopie zapasowe aplikacji :application_name na dysku :disk_name są niepoprawne.', + 'unhealthy_backup_found_not_reachable' => 'Miejsce docelowe kopii zapasowej nie jest osiągalne. :error', + 'unhealthy_backup_found_empty' => 'W aplikacji nie ma żadnej kopii zapasowych tej aplikacji.', + 'unhealthy_backup_found_old' => 'Ostatnia kopia zapasowa wykonania dnia :date jest zbyt stara.', + 'unhealthy_backup_found_unknown' => 'Niestety, nie można ustalić dokładnego błędu.', + 'unhealthy_backup_found_full' => 'Kopie zapasowe zajmują zbyt dużo miejsca. Obecne użycie dysku :disk_usage jest większe od ustalonego limitu :disk_limit.', + + 'no_backups_info' => 'Nie utworzono jeszcze kopii zapasowych', + 'application_name' => 'Nazwa aplikacji', + 'backup_name' => 'Nazwa kopii zapasowej', + 'disk' => 'Dysk', + 'newest_backup_size' => 'Najnowszy rozmiar kopii zapasowej', + 'number_of_backups' => 'Liczba kopii zapasowych', + 'total_storage_used' => 'Całkowite wykorzystane miejsce', + 'newest_backup_date' => 'Najnowszy rozmiar kopii zapasowej', + 'oldest_backup_date' => 'Najstarszy rozmiar kopii zapasowej', +]; diff --git a/resources/lang/vendor/backup/pt-BR/notifications.php b/resources/lang/vendor/backup/pt-BR/notifications.php new file mode 100644 index 000000000..406d4da1d --- /dev/null +++ b/resources/lang/vendor/backup/pt-BR/notifications.php @@ -0,0 +1,45 @@ + 'Mensagem de exceção: :message', + 'exception_trace' => 'Rastreamento de exceção: :trace', + 'exception_message_title' => 'Mensagem de exceção', + 'exception_trace_title' => 'Rastreamento de exceção', + + 'backup_failed_subject' => 'Falha no backup da aplicação :application_name', + 'backup_failed_body' => 'Importante: Ocorreu um erro ao fazer o backup da aplicação :application_name', + + 'backup_successful_subject' => 'Backup realizado com sucesso: :application_name', + 'backup_successful_subject_title' => 'Backup Realizado com sucesso!', + 'backup_successful_body' => 'Boas notícias, um novo backup da aplicação :application_name foi criado no disco :disk_name.', + + 'cleanup_failed_subject' => 'Falha na limpeza dos backups da aplicação :application_name.', + 'cleanup_failed_body' => 'Um erro ocorreu ao fazer a limpeza dos backups da aplicação :application_name', + + 'cleanup_successful_subject' => 'Limpeza dos backups da aplicação :application_name concluída!', + 'cleanup_successful_subject_title' => 'Limpeza dos backups concluída!', + 'cleanup_successful_body' => 'A limpeza dos backups da aplicação :application_name no disco :disk_name foi concluída.', + + 'healthy_backup_found_subject' => 'Os backups da aplicação :application_name no disco :disk_name estão em dia', + 'healthy_backup_found_subject_title' => 'Os backups da aplicação :application_name estão em dia', + 'healthy_backup_found_body' => 'Os backups da aplicação :application_name estão em dia. Bom trabalho!', + + 'unhealthy_backup_found_subject' => 'Importante: Os backups da aplicação :application_name não estão em dia', + 'unhealthy_backup_found_subject_title' => 'Importante: Os backups da aplicação :application_name não estão em dia. :problem', + 'unhealthy_backup_found_body' => 'Os backups da aplicação :application_name no disco :disk_name não estão em dia.', + 'unhealthy_backup_found_not_reachable' => 'O destino dos backups não pode ser alcançado. :error', + 'unhealthy_backup_found_empty' => 'Não existem backups para essa aplicação.', + 'unhealthy_backup_found_old' => 'O último backup realizado em :date é considerado muito antigo.', + 'unhealthy_backup_found_unknown' => 'Desculpe, a exata razão não pode ser encontrada.', + 'unhealthy_backup_found_full' => 'Os backups estão usando muito espaço de armazenamento. A utilização atual é de :disk_usage, o que é maior que o limite permitido de :disk_limit.', + + 'no_backups_info' => 'Nenhum backup foi feito ainda', + 'application_name' => 'Nome da Aplicação', + 'backup_name' => 'Nome de backup', + 'disk' => 'Disco', + 'newest_backup_size' => 'Tamanho do backup mais recente', + 'number_of_backups' => 'Número de backups', + 'total_storage_used' => 'Armazenamento total usado', + 'newest_backup_date' => 'Data do backup mais recente', + 'oldest_backup_date' => 'Data do backup mais antigo', +]; diff --git a/resources/lang/vendor/backup/pt/notifications.php b/resources/lang/vendor/backup/pt/notifications.php new file mode 100644 index 000000000..835cfebd1 --- /dev/null +++ b/resources/lang/vendor/backup/pt/notifications.php @@ -0,0 +1,45 @@ + 'Mensagem de exceção: :message', + 'exception_trace' => 'Rasto da exceção: :trace', + 'exception_message_title' => 'Mensagem de exceção', + 'exception_trace_title' => 'Rasto da exceção', + + 'backup_failed_subject' => 'Falha no backup da aplicação :application_name', + 'backup_failed_body' => 'Importante: Ocorreu um erro ao executar o backup da aplicação :application_name', + + 'backup_successful_subject' => 'Backup realizado com sucesso: :application_name', + 'backup_successful_subject_title' => 'Backup Realizado com Sucesso!', + 'backup_successful_body' => 'Boas notícias, foi criado um novo backup no disco :disk_name referente à aplicação :application_name.', + + 'cleanup_failed_subject' => 'Falha na limpeza dos backups da aplicação :application_name.', + 'cleanup_failed_body' => 'Ocorreu um erro ao executar a limpeza dos backups da aplicação :application_name', + + 'cleanup_successful_subject' => 'Limpeza dos backups da aplicação :application_name concluída!', + 'cleanup_successful_subject_title' => 'Limpeza dos backups concluída!', + 'cleanup_successful_body' => 'Concluída a limpeza dos backups da aplicação :application_name no disco :disk_name.', + + 'healthy_backup_found_subject' => 'Os backups da aplicação :application_name no disco :disk_name estão em dia', + 'healthy_backup_found_subject_title' => 'Os backups da aplicação :application_name estão em dia', + 'healthy_backup_found_body' => 'Os backups da aplicação :application_name estão em dia. Bom trabalho!', + + 'unhealthy_backup_found_subject' => 'Importante: Os backups da aplicação :application_name não estão em dia', + 'unhealthy_backup_found_subject_title' => 'Importante: Os backups da aplicação :application_name não estão em dia. :problem', + 'unhealthy_backup_found_body' => 'Os backups da aplicação :application_name no disco :disk_name não estão em dia.', + 'unhealthy_backup_found_not_reachable' => 'O destino dos backups não pode ser alcançado. :error', + 'unhealthy_backup_found_empty' => 'Não existem backups para essa aplicação.', + 'unhealthy_backup_found_old' => 'O último backup realizado em :date é demasiado antigo.', + 'unhealthy_backup_found_unknown' => 'Desculpe, impossível determinar a razão exata.', + 'unhealthy_backup_found_full' => 'Os backups estão a utilizar demasiado espaço de armazenamento. A utilização atual é de :disk_usage, o que é maior que o limite permitido de :disk_limit.', + + 'no_backups_info' => 'Nenhum backup foi feito ainda', + 'application_name' => 'Nome da Aplicação', + 'backup_name' => 'Nome de backup', + 'disk' => 'Disco', + 'newest_backup_size' => 'Tamanho de backup mais recente', + 'number_of_backups' => 'Número de backups', + 'total_storage_used' => 'Armazenamento total usado', + 'newest_backup_date' => 'Data de backup mais recente', + 'oldest_backup_date' => 'Data de backup mais antiga', +]; diff --git a/resources/lang/vendor/backup/ro/notifications.php b/resources/lang/vendor/backup/ro/notifications.php new file mode 100644 index 000000000..0e8bc91fb --- /dev/null +++ b/resources/lang/vendor/backup/ro/notifications.php @@ -0,0 +1,45 @@ + 'Cu excepția mesajului: :message', + 'exception_trace' => 'Urmă excepţie: :trace', + 'exception_message_title' => 'Mesaj de excepție', + 'exception_trace_title' => 'Urmă excepţie', + + 'backup_failed_subject' => 'Nu s-a putut face copie de rezervă pentru :application_name', + 'backup_failed_body' => 'Important: A apărut o eroare în timpul generării copiei de rezervă pentru :application_name', + + 'backup_successful_subject' => 'Copie de rezervă efectuată cu succes pentru :application_name', + 'backup_successful_subject_title' => 'O nouă copie de rezervă a fost efectuată cu succes!', + 'backup_successful_body' => 'Vești bune, o nouă copie de rezervă pentru :application_name a fost creată cu succes pe discul cu numele :disk_name.', + + 'cleanup_failed_subject' => 'Curățarea copiilor de rezervă pentru :application_name nu a reușit.', + 'cleanup_failed_body' => 'A apărut o eroare în timpul curățirii copiilor de rezervă pentru :application_name', + + 'cleanup_successful_subject' => 'Curățarea copiilor de rezervă pentru :application_name a fost făcută cu succes', + 'cleanup_successful_subject_title' => 'Curățarea copiilor de rezervă a fost făcută cu succes!', + 'cleanup_successful_body' => 'Curățarea copiilor de rezervă pentru :application_name de pe discul cu numele :disk_name a fost făcută cu succes.', + + 'healthy_backup_found_subject' => 'Copiile de rezervă pentru :application_name de pe discul :disk_name sunt în regulă', + 'healthy_backup_found_subject_title' => 'Copiile de rezervă pentru :application_name sunt în regulă', + 'healthy_backup_found_body' => 'Copiile de rezervă pentru :application_name sunt considerate în regulă. Bună treabă!', + + 'unhealthy_backup_found_subject' => 'Important: Copiile de rezervă pentru :application_name nu sunt în regulă', + 'unhealthy_backup_found_subject_title' => 'Important: Copiile de rezervă pentru :application_name nu sunt în regulă. :problem', + 'unhealthy_backup_found_body' => 'Copiile de rezervă pentru :application_name de pe discul :disk_name nu sunt în regulă.', + 'unhealthy_backup_found_not_reachable' => 'Nu se poate ajunge la destinația copiilor de rezervă. :error', + 'unhealthy_backup_found_empty' => 'Nu există copii de rezervă ale acestei aplicații.', + 'unhealthy_backup_found_old' => 'Cea mai recentă copie de rezervă făcută la :date este considerată prea veche.', + 'unhealthy_backup_found_unknown' => 'Ne pare rău, un motiv exact nu poate fi determinat.', + 'unhealthy_backup_found_full' => 'Copiile de rezervă folosesc prea mult spațiu de stocare. Utilizarea curentă este de :disk_usage care este mai mare decât limita permisă de :disk_limit.', + + 'no_backups_info' => 'Nu s-au făcut încă copii de rezervă', + 'application_name' => 'Numele aplicatiei', + 'backup_name' => 'Numele de rezervă', + 'disk' => 'Disc', + 'newest_backup_size' => 'Cea mai nouă dimensiune de rezervă', + 'number_of_backups' => 'Număr de copii de rezervă', + 'total_storage_used' => 'Spațiu total de stocare utilizat', + 'newest_backup_date' => 'Cea mai nouă dimensiune de rezervă', + 'oldest_backup_date' => 'Cea mai veche dimensiune de rezervă', +]; diff --git a/resources/lang/vendor/backup/ru/notifications.php b/resources/lang/vendor/backup/ru/notifications.php new file mode 100644 index 000000000..d58beb715 --- /dev/null +++ b/resources/lang/vendor/backup/ru/notifications.php @@ -0,0 +1,45 @@ + 'Сообщение об ошибке: :message', + 'exception_trace' => 'Сведения об ошибке: :trace', + 'exception_message_title' => 'Сообщение об ошибке', + 'exception_trace_title' => 'Сведения об ошибке', + + 'backup_failed_subject' => 'Не удалось сделать резервную копию :application_name', + 'backup_failed_body' => 'Внимание: Произошла ошибка во время резервного копирования :application_name', + + 'backup_successful_subject' => 'Успешно создана новая резервная копия :application_name', + 'backup_successful_subject_title' => 'Успешно создана новая резервная копия!', + 'backup_successful_body' => 'Отличная новость, новая резервная копия :application_name успешно создана и сохранена на диск :disk_name.', + + 'cleanup_failed_subject' => 'Не удалось очистить резервные копии :application_name', + 'cleanup_failed_body' => 'Произошла ошибка при очистке резервных копий :application_name', + + 'cleanup_successful_subject' => 'Очистка от резервных копий :application_name прошла успешно', + 'cleanup_successful_subject_title' => 'Очистка резервных копий прошла успешно!', + 'cleanup_successful_body' => 'Очистка от старых резервных копий :application_name на диске :disk_name прошла успешно.', + + 'healthy_backup_found_subject' => 'Резервные копии :application_name с диска :disk_name исправны', + 'healthy_backup_found_subject_title' => 'Резервные копии :application_name исправны', + 'healthy_backup_found_body' => 'Резервные копии :application_name считаются исправными. Хорошая работа!', + + 'unhealthy_backup_found_subject' => 'Внимание: резервные копии :application_name неисправны', + 'unhealthy_backup_found_subject_title' => 'Внимание: резервные копии для :application_name неисправны. :problem', + 'unhealthy_backup_found_body' => 'Резервные копии для :application_name на диске :disk_name неисправны.', + 'unhealthy_backup_found_not_reachable' => 'Не удается достичь места назначения резервной копии. :error', + 'unhealthy_backup_found_empty' => 'Резервные копии для этого приложения отсутствуют.', + 'unhealthy_backup_found_old' => 'Последнее резервное копирование созданное :date является устаревшим.', + 'unhealthy_backup_found_unknown' => 'Извините, точная причина не может быть определена.', + 'unhealthy_backup_found_full' => 'Резервные копии используют слишком много памяти. Используется :disk_usage что выше допустимого предела: :disk_limit.', + + 'no_backups_info' => 'Резервных копий еще не было', + 'application_name' => 'Имя приложения', + 'backup_name' => 'Имя резервной копии', + 'disk' => 'Диск', + 'newest_backup_size' => 'Размер последней резервной копии', + 'number_of_backups' => 'Количество резервных копий', + 'total_storage_used' => 'Общий объем используемого хранилища', + 'newest_backup_date' => 'Дата последней резервной копии', + 'oldest_backup_date' => 'Дата самой старой резервной копии', +]; diff --git a/resources/lang/vendor/backup/tr/notifications.php b/resources/lang/vendor/backup/tr/notifications.php new file mode 100644 index 000000000..64cfa5a03 --- /dev/null +++ b/resources/lang/vendor/backup/tr/notifications.php @@ -0,0 +1,45 @@ + 'Hata mesajı: :message', + 'exception_trace' => 'Hata izleri: :trace', + 'exception_message_title' => 'Hata mesajı', + 'exception_trace_title' => 'Hata izleri', + + 'backup_failed_subject' => 'Yedeklenemedi :application_name', + 'backup_failed_body' => 'Önemli: Yedeklenirken bir hata oluştu :application_name', + + 'backup_successful_subject' => 'Başarılı :application_name yeni yedeklemesi', + 'backup_successful_subject_title' => 'Başarılı bir yeni yedekleme!', + 'backup_successful_body' => 'Harika bir haber, :application_name ait yeni bir yedekleme :disk_name adlı diskte başarıyla oluşturuldu.', + + 'cleanup_failed_subject' => ':application_name yedeklemeleri temizlenmesi başarısız.', + 'cleanup_failed_body' => ':application_name yedeklerini temizlerken bir hata oluştu ', + + 'cleanup_successful_subject' => ':application_name yedeklemeleri temizlenmesi başarılı.', + 'cleanup_successful_subject_title' => 'Yedeklerin temizlenmesi başarılı!', + 'cleanup_successful_body' => ':application_name yedeklemeleri temizlenmesi, :disk_name diskinden silindi', + + 'healthy_backup_found_subject' => ':application_name yedeklenmesi, :disk_name adlı diskte sağlıklı', + 'healthy_backup_found_subject_title' => ':application_name yedeklenmesi sağlıklı', + 'healthy_backup_found_body' => ':application_name için yapılan yedeklemeler sağlıklı sayılır. Aferin!', + + 'unhealthy_backup_found_subject' => 'Önemli: :application_name için yedeklemeler sağlıksız', + 'unhealthy_backup_found_subject_title' => 'Önemli: :application_name için yedeklemeler sağlıksız. :problem', + 'unhealthy_backup_found_body' => 'Yedeklemeler: :application_name disk: :disk_name sağlıksız.', + 'unhealthy_backup_found_not_reachable' => 'Yedekleme hedefine ulaşılamıyor. :error', + 'unhealthy_backup_found_empty' => 'Bu uygulamanın yedekleri yok.', + 'unhealthy_backup_found_old' => ':date tarihinde yapılan en son yedekleme çok eski kabul ediliyor.', + 'unhealthy_backup_found_unknown' => 'Üzgünüm, kesin bir sebep belirlenemiyor.', + 'unhealthy_backup_found_full' => 'Yedeklemeler çok fazla depolama alanı kullanıyor. Şu anki kullanım: :disk_usage, izin verilen sınırdan yüksek: :disk_limit.', + + 'no_backups_info' => 'Henüz yedekleme yapılmadı', + 'application_name' => 'Uygulama Adı', + 'backup_name' => 'Yedek adı', + 'disk' => 'Disk', + 'newest_backup_size' => 'En yeni yedekleme boyutu', + 'number_of_backups' => 'Yedekleme sayısı', + 'total_storage_used' => 'Kullanılan toplam depolama alanı', + 'newest_backup_date' => 'En yeni yedekleme tarihi', + 'oldest_backup_date' => 'En eski yedekleme tarihi', +]; diff --git a/resources/lang/vendor/backup/uk/notifications.php b/resources/lang/vendor/backup/uk/notifications.php new file mode 100644 index 000000000..6f6f83b75 --- /dev/null +++ b/resources/lang/vendor/backup/uk/notifications.php @@ -0,0 +1,45 @@ + 'Повідомлення про помилку: :message', + 'exception_trace' => 'Деталі помилки: :trace', + 'exception_message_title' => 'Повідомлення помилки', + 'exception_trace_title' => 'Деталі помилки', + + 'backup_failed_subject' => 'Не вдалось зробити резервну копію :application_name', + 'backup_failed_body' => 'Увага: Трапилась помилка під час резервного копіювання :application_name', + + 'backup_successful_subject' => 'Успішне резервне копіювання :application_name', + 'backup_successful_subject_title' => 'Успішно створена резервна копія!', + 'backup_successful_body' => 'Чудова новина, нова резервна копія :application_name успішно створена і збережена на диск :disk_name.', + + 'cleanup_failed_subject' => 'Не вдалось очистити резервні копії :application_name', + 'cleanup_failed_body' => 'Сталася помилка під час очищення резервних копій :application_name', + + 'cleanup_successful_subject' => 'Успішне очищення від резервних копій :application_name', + 'cleanup_successful_subject_title' => 'Очищення резервних копій пройшло вдало!', + 'cleanup_successful_body' => 'Очищенно від старих резервних копій :application_name на диску :disk_name пойшло успішно.', + + 'healthy_backup_found_subject' => 'Резервна копія :application_name з диску :disk_name установлена', + 'healthy_backup_found_subject_title' => 'Резервна копія :application_name установлена', + 'healthy_backup_found_body' => 'Резервна копія :application_name успішно установлена. Хороша робота!', + + 'unhealthy_backup_found_subject' => 'Увага: резервна копія :application_name не установилась', + 'unhealthy_backup_found_subject_title' => 'Увага: резервна копія для :application_name не установилась. :problem', + 'unhealthy_backup_found_body' => 'Резервна копія для :application_name на диску :disk_name не установилась.', + 'unhealthy_backup_found_not_reachable' => 'Резервна копія не змогла установитись. :error', + 'unhealthy_backup_found_empty' => 'Резервні копії для цього додатку відсутні.', + 'unhealthy_backup_found_old' => 'Останнє резервне копіювання створено :date є застарілим.', + 'unhealthy_backup_found_unknown' => 'Вибачте, але ми не змогли визначити точну причину.', + 'unhealthy_backup_found_full' => 'Резервні копії використовують занадто багато пам`яті. Використовується :disk_usage що вище за допустиму межу :disk_limit.', + + 'no_backups_info' => 'Резервних копій ще не було зроблено', + 'application_name' => 'Назва програми', + 'backup_name' => 'Резервне ім’я', + 'disk' => 'Диск', + 'newest_backup_size' => 'Найновіший розмір резервної копії', + 'number_of_backups' => 'Кількість резервних копій', + 'total_storage_used' => 'Загальний обсяг використаного сховища', + 'newest_backup_date' => 'Найновіший розмір резервної копії', + 'oldest_backup_date' => 'Найстаріший розмір резервної копії', +]; diff --git a/resources/lang/vendor/backup/zh-CN/notifications.php b/resources/lang/vendor/backup/zh-CN/notifications.php new file mode 100644 index 000000000..79270841c --- /dev/null +++ b/resources/lang/vendor/backup/zh-CN/notifications.php @@ -0,0 +1,45 @@ + '异常信息: :message', + 'exception_trace' => '异常跟踪: :trace', + 'exception_message_title' => '异常信息', + 'exception_trace_title' => '异常跟踪', + + 'backup_failed_subject' => ':application_name 备份失败', + 'backup_failed_body' => '重要说明:备份 :application_name 时发生错误', + + 'backup_successful_subject' => ':application_name 备份成功', + 'backup_successful_subject_title' => '备份成功!', + 'backup_successful_body' => '好消息, :application_name 备份成功,位于磁盘 :disk_name 中。', + + 'cleanup_failed_subject' => '清除 :application_name 的备份失败。', + 'cleanup_failed_body' => '清除备份 :application_name 时发生错误', + + 'cleanup_successful_subject' => '成功清除 :application_name 的备份', + 'cleanup_successful_subject_title' => '成功清除备份!', + 'cleanup_successful_body' => '成功清除 :disk_name 磁盘上 :application_name 的备份。', + + 'healthy_backup_found_subject' => ':disk_name 磁盘上 :application_name 的备份是健康的', + 'healthy_backup_found_subject_title' => ':application_name 的备份是健康的', + 'healthy_backup_found_body' => ':application_name 的备份是健康的。干的好!', + + 'unhealthy_backup_found_subject' => '重要说明::application_name 的备份不健康', + 'unhealthy_backup_found_subject_title' => '重要说明::application_name 备份不健康。 :problem', + 'unhealthy_backup_found_body' => ':disk_name 磁盘上 :application_name 的备份不健康。', + 'unhealthy_backup_found_not_reachable' => '无法访问备份目标。 :error', + 'unhealthy_backup_found_empty' => '根本没有此应用程序的备份。', + 'unhealthy_backup_found_old' => '最近的备份创建于 :date ,太旧了。', + 'unhealthy_backup_found_unknown' => '对不起,确切原因无法确定。', + 'unhealthy_backup_found_full' => '备份占用了太多存储空间。当前占用了 :disk_usage ,高于允许的限制 :disk_limit。', + + 'no_backups_info' => '尚未进行任何备份', + 'application_name' => '应用名称', + 'backup_name' => '备份名称', + 'disk' => '磁盘', + 'newest_backup_size' => '最新备份大小', + 'number_of_backups' => '备份数量', + 'total_storage_used' => '使用的总存储量', + 'newest_backup_date' => '最新备份大小', + 'oldest_backup_date' => '最旧的备份大小', +]; diff --git a/resources/lang/vendor/backup/zh-TW/notifications.php b/resources/lang/vendor/backup/zh-TW/notifications.php new file mode 100644 index 000000000..7bc7dcb96 --- /dev/null +++ b/resources/lang/vendor/backup/zh-TW/notifications.php @@ -0,0 +1,45 @@ + '異常訊息: :message', + 'exception_trace' => '異常追蹤: :trace', + 'exception_message_title' => '異常訊息', + 'exception_trace_title' => '異常追蹤', + + 'backup_failed_subject' => ':application_name 備份失敗', + 'backup_failed_body' => '重要說明:備份 :application_name 時發生錯誤', + + 'backup_successful_subject' => ':application_name 備份成功', + 'backup_successful_subject_title' => '備份成功!', + 'backup_successful_body' => '好消息, :application_name 備份成功,位於磁碟 :disk_name 中。', + + 'cleanup_failed_subject' => '清除 :application_name 的備份失敗。', + 'cleanup_failed_body' => '清除備份 :application_name 時發生錯誤', + + 'cleanup_successful_subject' => '成功清除 :application_name 的備份', + 'cleanup_successful_subject_title' => '成功清除備份!', + 'cleanup_successful_body' => '成功清除 :disk_name 磁碟上 :application_name 的備份。', + + 'healthy_backup_found_subject' => ':disk_name 磁碟上 :application_name 的備份是健康的', + 'healthy_backup_found_subject_title' => ':application_name 的備份是健康的', + 'healthy_backup_found_body' => ':application_name 的備份是健康的。幹的好!', + + 'unhealthy_backup_found_subject' => '重要說明::application_name 的備份不健康', + 'unhealthy_backup_found_subject_title' => '重要說明::application_name 備份不健康。 :problem', + 'unhealthy_backup_found_body' => ':disk_name 磁碟上 :application_name 的備份不健康。', + 'unhealthy_backup_found_not_reachable' => '無法訪問備份目標。 :error', + 'unhealthy_backup_found_empty' => '根本沒有此應用程序的備份。', + 'unhealthy_backup_found_old' => '最近的備份創建於 :date ,太舊了。', + 'unhealthy_backup_found_unknown' => '對不起,確切原因無法確定。', + 'unhealthy_backup_found_full' => '備份佔用了太多存儲空間。當前佔用了 :disk_usage ,高於允許的限制 :disk_limit。', + + 'no_backups_info' => '尚未進行任何備份', + 'application_name' => '應用名稱', + 'backup_name' => '備份名稱', + 'disk' => '磁碟', + 'newest_backup_size' => '最新備份大小', + 'number_of_backups' => '備份數量', + 'total_storage_used' => '使用的總存儲量', + 'newest_backup_date' => '最新備份大小', + 'oldest_backup_date' => '最早的備份大小', +]; diff --git a/resources/lang/vi-VN/account/general.php b/resources/lang/vi-VN/account/general.php index 026d0efed..530a887f6 100644 --- a/resources/lang/vi-VN/account/general.php +++ b/resources/lang/vi-VN/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Khóa API cá nhân', - 'api_key_warning' => 'Khi tạo mã thông báo API, hãy đảm bảo sao chép nó ngay lập tức - chúng sẽ không hiển thị với bạn nữa.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Địa chỉ URL gốc API của bạn được đặt tại:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'Khóa API được thiết lập có thời hạn đến:', - 'api_reference' => 'Vui lòng kiểm tra tài liệu tham khảo API để - tìm các API endpoint cụ thể và tài liệu API bổ sung.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Đã cập nhật tài khoản thành công', ); diff --git a/resources/lang/vi-VN/admin/locations/message.php b/resources/lang/vi-VN/admin/locations/message.php index 915d6972b..7b83762d9 100644 --- a/resources/lang/vi-VN/admin/locations/message.php +++ b/resources/lang/vi-VN/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Địa phương không tồn tại.', - 'assoc_users' => 'Địa phương này hiện tại đang được liên kết với ít nhất một người dùng và không thể xóa. Xin vui lòng cập nhật người dùng của bạn để không có liên kết nào đến địa phương này và thử lại. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Địa phương này hiện tại đã được liên kết với ít nhất một tài sản và không thể xóa. Xin vui lòng cập nhật tài sản của bạn để không còn liên kết với địa phương này nữa và thử lại. ', 'assoc_child_loc' => 'Địa phương này hiện tại là cấp parent của ít nhật một địa phương con và không thể xóa. Xin vui lòng cập nhật địa phương của bạn để không liên kết đến địa phương này và thử lại. ', 'assigned_assets' => 'Tài sản được giao', diff --git a/resources/lang/vi-VN/admin/settings/general.php b/resources/lang/vi-VN/admin/settings/general.php index 4b10bad60..f861e7a0d 100644 --- a/resources/lang/vi-VN/admin/settings/general.php +++ b/resources/lang/vi-VN/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Chiều dài của các thẻ thuộc tính, bao gồm zerofill', 'username_format_help' => 'Cài đặt này sẽ chỉ được sử dụng bởi quá trình import nếu tên người dùng không được cung cấp và chúng tôi sẽ tạo tên người dùng cho bạn.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Cập nhật cài đặt mã vạch', 'barcodes' => 'Mã vạch', diff --git a/resources/lang/vi-VN/general.php b/resources/lang/vi-VN/general.php index fa829b735..e5b214b42 100644 --- a/resources/lang/vi-VN/general.php +++ b/resources/lang/vi-VN/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Họ trước Tên sau (smith_j@example.com)', 'firstinitial.lastname' => 'Tên trước Họ sau (j.smith@example.com)', 'firstnamelastinitial' => 'Tên Họ Viết tắt (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Họ và tên đệm', 'first_name_format' => 'Tên (jane@example.com)', 'files' => 'Các tập tin', @@ -403,8 +404,8 @@ return [ 'accessory_name' => 'Tên Phụ Kiện:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Cấp phát tài sản', - 'checkin_tooltip' => 'Check this item in so that it is available for re-issue, re-imaging, etc', - 'checkout_user_tooltip' => 'Check this item out to a user', + 'checkin_tooltip' => 'Thu hồi mục này để có thể chỉnh sửa hoặc cấp phát lại', + 'checkout_user_tooltip' => 'Cấp phát mục này cho người dùng', 'checkin_to_diff_location' => 'You can choose to check this asset in to a location other than this asset\'s default location of :default_location if one is set', 'maintenance_mode' => 'The service is temporarily unavailable for system updates. Please check back later.', 'maintenance_mode_title' => 'System Temporarily Unavailable', @@ -478,7 +479,7 @@ return [ 'modal_confirm_generic' => 'Are you sure?', 'cannot_be_deleted' => 'This item cannot be deleted', 'cannot_be_edited' => 'This item cannot be edited.', - 'undeployable_tooltip' => 'This item cannot be checked out. Check the quantity remaining.', + 'undeployable_tooltip' => 'Mục này không thể cấp phát. Kiểm tra lại số lượng tồn.', 'serial_number' => 'Serial Number', 'item_notes' => ':item Notes', 'item_name_var' => ':tên thiết bị', diff --git a/resources/lang/zh-CN/account/general.php b/resources/lang/zh-CN/account/general.php index d28721335..2000bc541 100644 --- a/resources/lang/zh-CN/account/general.php +++ b/resources/lang/zh-CN/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => '个人API密钥', - 'api_key_warning' => '当 API 令牌生成后,请务必立即复制保存,因为他们 - 将不会再次对您显示。', + 'api_key_warning' => '当生成 API 令牌时,请务必立即将其复制下来,因为它们将不会对您再次可见。', 'api_base_url' => '您的 API 基础url 位于:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => '设定 API 令牌过期时间为:', - 'api_reference' => '请查询 API 引用 到 - 找到特定的 API 端点以及额外的 API 文档。', + 'api_reference' => '请检查 API 参考 以找到特定的 API 端点和额外的 API 文档。', 'profile_updated' => '帐户已成功更新', ); diff --git a/resources/lang/zh-CN/admin/locations/message.php b/resources/lang/zh-CN/admin/locations/message.php index f87df0f84..9d0f63836 100644 --- a/resources/lang/zh-CN/admin/locations/message.php +++ b/resources/lang/zh-CN/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => '位置不存在', - 'assoc_users' => '该位置下管理的还有其他用户,目前不能删除,请更新该用户的信息之后,再尝试删除。', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => '删除失败,该位置已与其它资产关联。请先更新资产以取消关联,然后重试。 ', 'assoc_child_loc' => '删除失败,该位置是一个或多个子位置的上层节点。请更新地理位置信息以取消关联,然后重试。 ', 'assigned_assets' => '已分配的资产', diff --git a/resources/lang/zh-CN/admin/settings/general.php b/resources/lang/zh-CN/admin/settings/general.php index 20d2215eb..f9f76cbc6 100644 --- a/resources/lang/zh-CN/admin/settings/general.php +++ b/resources/lang/zh-CN/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => '资产标签长度,包括补零', 'username_format_help' => '只有在没有提供用户名并且我们必须为您生成用户名时,导入过程才会使用此设置。', 'oauth_title' => 'OAuth API 设置', + 'oauth_clients' => 'OAuth 客户端', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint 设置', + 'oauth_no_clients' => '您尚未创建任何 OAuth 客户端。', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => '授权的应用程序', + 'oauth_redirect_url' => '重定向 URL', + 'oauth_name_help' => ' 您的用户会识别和信任一些东西。', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => '您的应用程序授权回调URL。', + 'create_client' => '创建客户端', + 'no_scopes' => 'No scopes', 'asset_tag_title' => '更新资产标签设置', 'barcode_title' => '更新条形码设置', 'barcodes' => '条形码', diff --git a/resources/lang/zh-CN/general.php b/resources/lang/zh-CN/general.php index 8da10d2f7..b9df40b4f 100644 --- a/resources/lang/zh-CN/general.php +++ b/resources/lang/zh-CN/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => '姓 缩写名, 例如 (smith_j@example.com)', 'firstinitial.lastname' => '缩写名 姓,例如(jsmith@example.com)', 'firstnamelastinitial' => '名 姓,例如 (jane.smith@example.com)', + 'lastnamefirstname' => '姓 名,例如(smith.jane@example.com)', 'first_name' => '名字', 'first_name_format' => '名,例如 (jane@example.com)', 'files' => '文件', diff --git a/resources/lang/zh-HK/account/general.php b/resources/lang/zh-HK/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/zh-HK/account/general.php +++ b/resources/lang/zh-HK/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/zh-HK/admin/locations/message.php b/resources/lang/zh-HK/admin/locations/message.php index 22c7fe8f7..8121b8068 100644 --- a/resources/lang/zh-HK/admin/locations/message.php +++ b/resources/lang/zh-HK/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Location does not exist.', - 'assoc_users' => 'This location is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this location and try again. ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ', 'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/zh-HK/admin/settings/general.php b/resources/lang/zh-HK/admin/settings/general.php index 01adf36eb..727c35a6e 100644 --- a/resources/lang/zh-HK/admin/settings/general.php +++ b/resources/lang/zh-HK/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Length of asset tags, including zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/zh-HK/general.php b/resources/lang/zh-HK/general.php index d011cf705..67a5c3d2e 100644 --- a/resources/lang/zh-HK/general.php +++ b/resources/lang/zh-HK/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'First Name', 'first_name_format' => 'First Name (jane@example.com)', 'files' => 'Files', diff --git a/resources/lang/zh-TW/account/general.php b/resources/lang/zh-TW/account/general.php index fc3f78285..a29c8ac3a 100644 --- a/resources/lang/zh-TW/account/general.php +++ b/resources/lang/zh-TW/account/general.php @@ -2,10 +2,10 @@ return array( 'personal_api_keys' => '個人 API 金鑰', - 'api_key_warning' => '產生 API token 時,請務必立即將其複製下來,因為你將無法再次看到它。', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => '您的 API 基礎 URL 位於:', 'api_base_url_endpoint' => '/<端點>', 'api_token_expiration_time' => 'API tokens 設定為在以下時間過期:', - 'api_reference' => '請查閱 API 參考文件 以找到特定的 API 端點和額外的 API 文件。', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/zh-TW/admin/locations/message.php b/resources/lang/zh-TW/admin/locations/message.php index db8a9fcf5..ab637febb 100644 --- a/resources/lang/zh-TW/admin/locations/message.php +++ b/resources/lang/zh-TW/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => '地點不存在.', - 'assoc_users' => '至少還有一位使用者與此位置關聯,目前不能被删除,請檢查後重試。 ', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => '至少還有一個資產與此位置關聯,目前不能被删除,請檢查後重試。 ', 'assoc_child_loc' => '至少還有一個子項目與此位置關聯,目前不能被删除,請檢查後重試。 ', 'assigned_assets' => '已分配資產', diff --git a/resources/lang/zh-TW/admin/settings/general.php b/resources/lang/zh-TW/admin/settings/general.php index d6b21d4b6..d8ebbcb75 100644 --- a/resources/lang/zh-TW/admin/settings/general.php +++ b/resources/lang/zh-TW/admin/settings/general.php @@ -288,8 +288,18 @@ return [ 'zerofill_count' => '資產標籤長度,包括補零', 'username_format_help' => '只有在提供使用者名稱並且我們必須為您產生使用者名稱的匯入過程中才會使用此設定。', 'oauth_title' => 'OAuth API 設定', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'OAuth 端點設定', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => '更新資產標籤設定', 'barcode_title' => '更新條碼設定', 'barcodes' => '條碼', diff --git a/resources/lang/zh-TW/general.php b/resources/lang/zh-TW/general.php index dbf6c2391..3283e59bc 100644 --- a/resources/lang/zh-TW/general.php +++ b/resources/lang/zh-TW/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => '姓氏與名首字母 (smith_j@example.com)', 'firstinitial.lastname' => '姓氏與名首子母 (j.smith@example.com)', 'firstnamelastinitial' => '名字與姓首字母 (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => '名字', 'first_name_format' => '名,例如 (jane@example.com)', 'files' => '檔案', diff --git a/resources/lang/zu-ZA/account/general.php b/resources/lang/zu-ZA/account/general.php index 1fc28f340..1a9e2c03b 100644 --- a/resources/lang/zu-ZA/account/general.php +++ b/resources/lang/zu-ZA/account/general.php @@ -2,12 +2,10 @@ return array( 'personal_api_keys' => 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', + 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.', 'api_base_url' => 'Your API base url is located at:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.', 'profile_updated' => 'Account successfully updated', ); diff --git a/resources/lang/zu-ZA/admin/locations/message.php b/resources/lang/zu-ZA/admin/locations/message.php index aad4dbb99..7db24f666 100644 --- a/resources/lang/zu-ZA/admin/locations/message.php +++ b/resources/lang/zu-ZA/admin/locations/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Indawo ayikho.', - 'assoc_users' => 'Le ndawo okwamanje ihlobene nomsebenzisi oyedwa futhi ayikwazi ukususwa. Sicela ubuyekeze abasebenzisi bakho ukuba bangabe besayibhekisela kule ndawo bese uzama futhi.', + 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your models to no longer reference this company and try again. ', 'assoc_assets' => 'Le ndawo okwamanje ihlotshaniswa okungenani nefa elilodwa futhi ayikwazi ukususwa. Sicela ubuyekeze izimpahla zakho ukuze ungasaphinde ubhekise le ndawo futhi uzame futhi.', 'assoc_child_loc' => 'Le ndawo okwamanje ungumzali okungenani indawo eyodwa yengane futhi ayikwazi ukususwa. Sicela ubuyekeze izindawo zakho ukuze ungasaphinde ubhekisele kule ndawo bese uyazama futhi.', 'assigned_assets' => 'Assigned Assets', diff --git a/resources/lang/zu-ZA/admin/settings/general.php b/resources/lang/zu-ZA/admin/settings/general.php index 7c7da28ef..b69121a71 100644 --- a/resources/lang/zu-ZA/admin/settings/general.php +++ b/resources/lang/zu-ZA/admin/settings/general.php @@ -287,8 +287,18 @@ return [ 'zerofill_count' => 'Ubude bamathegi wefa, kufaka phakathi i-zerofill', 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', 'oauth_title' => 'OAuth API Settings', + 'oauth_clients' => 'OAuth Clients', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', + 'oauth_no_clients' => 'You have not created any OAuth clients yet.', + 'oauth_secret' => 'Secret', + 'oauth_authorized_apps' => 'Authorized Applications', + 'oauth_redirect_url' => 'Redirect URL', + 'oauth_name_help' => ' Something your users will recognize and trust.', + 'oauth_scopes' => 'Scopes', + 'oauth_callback_url' => 'Your application authorization callback URL.', + 'create_client' => 'Create Client', + 'no_scopes' => 'No scopes', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', 'barcodes' => 'Barcodes', diff --git a/resources/lang/zu-ZA/general.php b/resources/lang/zu-ZA/general.php index d46d61442..14d2c7ea0 100644 --- a/resources/lang/zu-ZA/general.php +++ b/resources/lang/zu-ZA/general.php @@ -134,6 +134,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', + 'lastnamefirstname' => 'Last Name First Name (smith.jane@example.com)', 'first_name' => 'Igama', 'first_name_format' => 'Igama Lokuqala (jane@example.com)', 'files' => 'Files', diff --git a/resources/macros/macros.php b/resources/macros/macros.php index 695fa86b0..584c7df84 100644 --- a/resources/macros/macros.php +++ b/resources/macros/macros.php @@ -190,6 +190,7 @@ Form::macro('username_format', function ($name = 'username_format', $selected = 'lastname_firstinitial' => trans('general.lastname_firstinitial'), 'firstnamelastname' => trans('general.firstnamelastname'), 'firstnamelastinitial' => trans('general.firstnamelastinitial'), + 'lastname.firstname' => trans('general.lastnamefirstname'), ]; $select = 'profile_edit)) == '1' ? ' checked="checked"' : '' }} aria-label="profile_edit"> + {{ trans('admin/settings/general.profile_edit_help') }} + + +
+ +
diff --git a/resources/views/settings/labels.blade.php b/resources/views/settings/labels.blade.php index 69f92f8a3..65d7e6c84 100644 --- a/resources/views/settings/labels.blade.php +++ b/resources/views/settings/labels.blade.php @@ -220,7 +220,7 @@ {{ Form::label('label2_fields', trans('admin/settings/general.label2_fields')) }}
- @include('partials.label2-field-definitions', [ 'name' => 'label2_fields', 'value' => old('label2_fields', $setting->label2_fields), 'customFields' => $customFields ]) + @include('partials.label2-field-definitions', [ 'name' => 'label2_fields', 'value' => old('label2_fields', $setting->label2_fields), 'customFields' => $customFields, 'template' => $setting->label2_template]) {!! $errors->first('label2_fields', '') !!}

{{ trans('admin/settings/general.label2_fields_help') }}

diff --git a/tests/Feature/Settings/ShowSetUpPageTest.php b/tests/Feature/Settings/ShowSetUpPageTest.php index 44c3d5a42..7f40768db 100644 --- a/tests/Feature/Settings/ShowSetUpPageTest.php +++ b/tests/Feature/Settings/ShowSetUpPageTest.php @@ -9,6 +9,7 @@ use Illuminate\Http\Client\Response; use Illuminate\Log\Events\MessageLogged; use Illuminate\Support\Facades\DB; use Illuminate\Support\Facades\Event; +use Illuminate\Support\Facades\File; use Illuminate\Support\Facades\Http; use Illuminate\Support\Facades\Log; use Illuminate\Support\Facades\URL; @@ -267,4 +268,37 @@ class ShowSetUpPageTest extends TestCase $this->assertSeeAppUrlMisconfigurationErrorMessage(); } + + public function testWillSeeDirectoryPermissionErrorWhenStoragePathIsNotWritable(): void + { + File::shouldReceive('isWritable')->andReturn(false); + + $this->getSetUpPageResponse()->assertOk(); + + $this->assertSeeDirectoryPermissionError(); + } + + protected function assertSeeDirectoryPermissionError(bool $shouldSee = true): void + { + $storagePath = storage_path(); + + $errorMessage = "Uh-oh. Your {$storagePath} directory (or sub-directories within) are not writable by the web-server. Those directories need to be writable by the web server in order for the app to work."; + $successMessage = 'Yippee! Your app storage directory seems writable'; + + if ($shouldSee) { + self::$latestResponse->assertSee($errorMessage, false)->assertDontSee($successMessage, false); + return; + } + + self::$latestResponse->assertSee($successMessage, false)->assertDontSee($errorMessage,false); + } + + public function testWillNotSeeDirectoryPermissionErrorWhenStoragePathIsWritable(): void + { + File::shouldReceive('isWritable')->andReturn(true); + + $this->getSetUpPageResponse()->assertOk(); + + $this->assertSeeDirectoryPermissionError(false); + } } diff --git a/tests/Feature/Users/Api/DeleteUserTest.php b/tests/Feature/Users/Api/DeleteUserTest.php index f3f8e80f3..e8da98fe3 100644 --- a/tests/Feature/Users/Api/DeleteUserTest.php +++ b/tests/Feature/Users/Api/DeleteUserTest.php @@ -12,6 +12,28 @@ class DeleteUserTest extends TestCase { + public function testErrorReturnedViaApiIfUserDoesNotExist() + { + $this->actingAsForApi(User::factory()->deleteUsers()->create()) + ->deleteJson(route('api.users.destroy', 'invalid-id')) + ->assertOk() + ->assertStatus(200) + ->assertStatusMessageIs('error') + ->json(); + } + + public function testErrorReturnedViaApiIfUserIsAlreadyDeleted() + { + $user = User::factory()->deletedUser()->create(); + $this->actingAsForApi(User::factory()->deleteUsers()->create()) + ->deleteJson(route('api.users.destroy', $user->id)) + ->assertOk() + ->assertStatus(200) + ->assertStatusMessageIs('error') + ->json(); + } + + public function testDisallowUserDeletionViaApiIfStillManagingPeople() { $manager = User::factory()->create(); @@ -56,40 +78,64 @@ class DeleteUserTest extends TestCase ->json(); } - public function testPermissionsForDeletingUsers() + public function testDeniedPermissionsForDeletingUserViaApi() { - $this->actingAsForApi(User::factory()->create()) ->deleteJson(route('api.users.destroy', User::factory()->create())) ->assertStatus(403) ->json(); } - public function testPermissionsIfNotInSameCompanyAndNotSuperadmin() + public function testSuccessPermissionsForDeletingUserViaApi() { - $this->settings->enableMultipleFullCompanySupport(); - [$companyA, $companyB] = Company::factory()->count(2)->create(); - - $superUser = $companyA->users()->save(User::factory()->superuser()->make()); - $userInCompanyA = $companyA->users()->save(User::factory()->deleteUsers()->make()); - $userInCompanyB = $companyB->users()->save(User::factory()->deleteUsers()->make()); - - $this->actingAsForApi($userInCompanyA) - ->deleteJson(route('api.users.destroy', $userInCompanyB)) - ->assertStatus(403) - ->json(); - - $this->actingAsForApi($userInCompanyB) - ->deleteJson(route('api.users.destroy', $userInCompanyA)) - ->assertStatus(403) - ->json(); - - $this->actingAsForApi($superUser) - ->deleteJson(route('api.users.destroy', $userInCompanyA)) + $this->actingAsForApi(User::factory()->deleteUsers()->create()) + ->deleteJson(route('api.users.destroy', User::factory()->create())) ->assertOk() ->assertStatus(200) ->assertStatusMessageIs('success') ->json(); + } + + + public function testPermissionsForDeletingIfNotInSameCompanyAndNotSuperadmin() + { + $this->settings->enableMultipleFullCompanySupport(); + + [$companyA, $companyB] = Company::factory()->count(2)->create(); + + $superuser = User::factory()->superuser()->create(); + $userFromA = User::factory()->deleteUsers()->for($companyA)->create(); + $userFromB = User::factory()->deleteUsers()->for($companyB)->create(); + + $this->actingAsForApi($userFromA) + ->deleteJson(route('api.users.destroy', ['user' => $userFromB->id])) + ->assertOk() + ->assertStatus(200) + ->assertStatusMessageIs('error') + ->json(); + + $userFromB->refresh(); + $this->assertNull($userFromB->deleted_at); + + $this->actingAsForApi($userFromB) + ->deleteJson(route('api.users.destroy', ['user' => $userFromA->id])) + ->assertOk() + ->assertStatus(200) + ->assertStatusMessageIs('error') + ->json(); + + $userFromA->refresh(); + $this->assertNull($userFromA->deleted_at); + + $this->actingAsForApi($superuser) + ->deleteJson(route('api.users.destroy', ['user' => $userFromA->id])) + ->assertOk() + ->assertStatus(200) + ->assertStatusMessageIs('success') + ->json(); + + $userFromA->refresh(); + $this->assertNotNull($userFromA->deleted_at); } diff --git a/tests/Feature/Users/Api/RestoreUserTest.php b/tests/Feature/Users/Api/RestoreUserTest.php new file mode 100644 index 000000000..0ffac8f07 --- /dev/null +++ b/tests/Feature/Users/Api/RestoreUserTest.php @@ -0,0 +1,105 @@ +actingAsForApi(User::factory()->deleteUsers()->create()) + ->postJson(route('api.users.restore', 'invalid-id')) + ->assertOk() + ->assertStatus(200) + ->assertStatusMessageIs('error') + ->json(); + } + + public function testErrorReturnedViaApiIfUserIsNotDeleted() + { + $user = User::factory()->create(); + $this->actingAsForApi(User::factory()->deleteUsers()->create()) + ->postJson(route('api.users.restore', $user->id)) + ->assertOk() + ->assertStatus(200) + ->assertStatusMessageIs('error') + ->json(); + } + + + public function testDeniedPermissionsForRestoringUserViaApi() + { + $this->actingAsForApi(User::factory()->create()) + ->postJson(route('api.users.restore', User::factory()->deletedUser()->create())) + ->assertStatus(403) + ->json(); + } + + public function testSuccessPermissionsForRestoringUserViaApi() + { + $deleted_user = User::factory()->deletedUser()->create(); + + $this->actingAsForApi(User::factory()->admin()->create()) + ->postJson(route('api.users.restore', ['user' => $deleted_user])) + ->assertOk() + ->assertStatus(200) + ->assertStatusMessageIs('success') + ->json(); + + $deleted_user->refresh(); + $this->assertNull($deleted_user->deleted_at); + } + + public function testPermissionsForRestoringIfNotInSameCompanyAndNotSuperadmin() + { + $this->settings->enableMultipleFullCompanySupport(); + + [$companyA, $companyB] = Company::factory()->count(2)->create(); + + $superuser = User::factory()->superuser()->create(); + $userFromA = User::factory()->deletedUser()->deleteUsers()->for($companyA)->create(); + $userFromB = User::factory()->deletedUser()->deleteUsers()->for($companyB)->create(); + + $this->actingAsForApi($userFromA) + ->postJson(route('api.users.restore', ['user' => $userFromB->id])) + ->assertOk() + ->assertStatus(200) + ->assertStatusMessageIs('error') + ->json(); + + $userFromB->refresh(); + $this->assertNotNull($userFromB->deleted_at); + + $this->actingAsForApi($userFromB) + ->postJson(route('api.users.restore', ['user' => $userFromA->id])) + ->assertOk() + ->assertStatus(200) + ->assertStatusMessageIs('error') + ->json(); + + $userFromA->refresh(); + $this->assertNotNull($userFromA->deleted_at); + + $this->actingAsForApi($superuser) + ->postJson(route('api.users.restore', ['user' => $userFromA->id])) + ->assertOk() + ->assertStatus(200) + ->assertStatusMessageIs('success') + ->json(); + + $userFromA->refresh(); + $this->assertNull($userFromA->deleted_at); + + } + + + + +} diff --git a/tests/Feature/Users/Api/ViewUserTest.php b/tests/Feature/Users/Api/ViewUserTest.php index 859333698..07346dbbb 100644 --- a/tests/Feature/Users/Api/ViewUserTest.php +++ b/tests/Feature/Users/Api/ViewUserTest.php @@ -20,42 +20,4 @@ class ViewUserTest extends TestCase ->assertOk(); } - public function testPermissionsWithCompanyableToDeleteUser() - { - - $this->settings->enableMultipleFullCompanySupport(); - - [$companyA, $companyB] = Company::factory()->count(2)->create(); - - $superuser = User::factory()->superuser()->create(); - $userFromA = User::factory()->for($companyA)->create(); - $userFromB = User::factory()->for($companyB)->create(); - - $this->actingAsForApi(User::factory()->deleteUsers()->for($companyA)->create()) - ->deleteJson(route('api.users.destroy', $userFromA->id)) - ->assertOk() - ->assertStatus(200) - ->assertStatusMessageIs('success') - ->json(); - - $this->actingAsForApi(User::factory()->deleteUsers()->for($companyB)->create()) - ->deleteJson(route('api.users.destroy', $userFromA->id)) - ->assertStatus(403); - - $this->actingAsForApi($superuser) - ->deleteJson(route('api.users.destroy', $userFromA->id)) - ->assertOk() - ->assertStatus(200) - ->assertStatusMessageIs('success') - ->json(); - - $this->actingAsForApi($superuser) - ->deleteJson(route('api.users.destroy', $userFromB->id)) - ->assertOk() - ->assertStatus(200) - ->assertStatusMessageIs('success') - ->json(); - - } - } diff --git a/tests/Feature/Users/Ui/DeleteUserTest.php b/tests/Feature/Users/Ui/DeleteUserTest.php index 61ee23379..da4c5a37e 100644 --- a/tests/Feature/Users/Ui/DeleteUserTest.php +++ b/tests/Feature/Users/Ui/DeleteUserTest.php @@ -14,7 +14,42 @@ use App\Models\Asset; class DeleteUserTest extends TestCase { - public function testPermissionsToDeleteUser() + public function testUserCanDeleteAnotherUser() + { + $user = User::factory()->deleteUsers()->viewUsers()->create(); + $this->actingAs(User::factory()->deleteUsers()->viewUsers()->create())->assertTrue($user->isDeletable()); + + $response = $this->actingAs(User::factory()->deleteUsers()->viewUsers()->create()) + ->delete(route('users.destroy', ['user' => $user->id])) + ->assertStatus(302) + ->assertRedirect(route('users.index')); + + $this->followRedirects($response)->assertSee(trans('general.notification_success')); + } + + + public function testErrorReturnedIfUserDoesNotExist() + { + $response = $this->actingAs(User::factory()->deleteUsers()->viewUsers()->create()) + ->delete(route('users.destroy', ['user' => '40596803548609346'])) + ->assertStatus(302) + ->assertRedirect(route('users.index')); + $this->followRedirects($response)->assertSee(trans('alert-danger')); + } + + public function testErrorReturnedIfUserIsAlreadyDeleted() + { + $user = User::factory()->deletedUser()->viewUsers()->create(); + $response = $this->actingAs(User::factory()->deleteUsers()->viewUsers()->create()) + ->delete(route('users.destroy', $user->id)) + ->assertStatus(302) + ->assertRedirect(route('users.index')); + + $this->followRedirects($response)->assertSee(trans('general.error')); + } + + + public function testFmcsPermissionsToDeleteUser() { $this->settings->enableMultipleFullCompanySupport(); @@ -22,17 +57,35 @@ class DeleteUserTest extends TestCase [$companyA, $companyB] = Company::factory()->count(2)->create(); $superuser = User::factory()->superuser()->create(); - $userFromA = User::factory()->for($companyA)->create(); - $userFromB = User::factory()->for($companyB)->create(); + $userFromA = User::factory()->deleteUsers()->for($companyA)->create(); + $userFromB = User::factory()->deleteUsers()->for($companyB)->create(); - $this->followingRedirects()->actingAs(User::factory()->deleteUsers()->for($companyA)->create()) + $response = $this->followingRedirects()->actingAs($userFromA) ->delete(route('users.destroy', ['user' => $userFromB->id])) ->assertStatus(403); + $this->followRedirects($response)->assertSee('sad-panda.png'); - $this->actingAs(User::factory()->deleteUsers()->for($companyA)->create()) + $userFromB->refresh(); + $this->assertNull($userFromB->deleted_at); + + + $response = $this->actingAs($userFromB) ->delete(route('users.destroy', ['user' => $userFromA->id])) ->assertStatus(302) ->assertRedirect(route('users.index')); + $this->followRedirects($response)->assertSee('sad-panda.png'); + + $userFromA->refresh(); + $this->assertNull($userFromA->deleted_at); + + $response = $this->actingAs($superuser) + ->delete(route('users.destroy', ['user' => $userFromA->id])) + ->assertStatus(302) + ->assertRedirect(route('users.index')); + $this->followRedirects($response)->assertSee('Success'); + + $userFromA->refresh(); + $this->assertNotNull($userFromA->deleted_at); } diff --git a/tests/Unit/AssetTest.php b/tests/Unit/AssetTest.php index 9c3a76af6..ef0da1a1b 100644 --- a/tests/Unit/AssetTest.php +++ b/tests/Unit/AssetTest.php @@ -6,6 +6,7 @@ use App\Models\AssetModel; use App\Models\Category; use Carbon\Carbon; use Tests\TestCase; +use App\Models\Setting; class AssetTest extends TestCase { @@ -135,6 +136,40 @@ class AssetTest extends TestCase $this->assertEquals($final->asset_tag, $final_result); } + public function testAutoIncrementBIG() + { + $this->settings->enableAutoIncrement(); + + // we have to do this by hand to 'simulate' two web pages being open at the same time + $a = Asset::factory()->make(['asset_tag' => Asset::autoincrement_asset()]); + $b = Asset::factory()->make(['asset_tag' => 'ABCD' . (PHP_INT_MAX - 1)]); + + $this->assertTrue($a->save()); + $this->assertTrue($b->save()); + \Log::error("A asset tag is: " . $a->asset_tag); + $matches = []; + preg_match('/\d+/', $a->asset_tag, $matches); + \Log::error("digits are: " . $matches[0]); + $this->assertEquals(Setting::getSettings()->next_auto_tag_base, $matches[0] + 1, "Next auto increment number should be the last normally-saved one plus one, but isn't"); + } + + public function testAutoIncrementAlmostBIG() + { + // TODO: this looks pretty close to the one above, could we maybe squish them together? + $this->settings->enableAutoIncrement(); + + // we have to do this by hand to 'simulate' two web pages being open at the same time + $a = Asset::factory()->make(['asset_tag' => Asset::autoincrement_asset()]); + $b = Asset::factory()->make(['asset_tag' => 'ABCD' . (PHP_INT_MAX - 2)]); + + $this->assertTrue($a->save()); + $this->assertTrue($b->save()); + $matches = []; + preg_match('/\d+/', $b->asset_tag, $matches); //this is *b*, not *a* - slight difference from above test + $this->assertEquals(Setting::getSettings()->next_auto_tag_base, $matches[0] + 1, "Next auto increment number should be the last normally-saved one plus one, but isn't"); + } + + public function testWarrantyExpiresAttribute() {