Skip to content

Commit fd9fe90

Browse files
committed
キャッシュまで翻訳
1 parent 8a1884d commit fd9fe90

File tree

5 files changed

+40
-40
lines changed

5 files changed

+40
-40
lines changed

translation-ja/blade.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ Bladeの`@include`ディレクティブを使用すると、別のビュー内
658658
また、Bladeでは、ビューにコメントを定義することができます。ただし、HTMLのコメントとは異なり、Bladeのコメントは、アプリケーションが返すHTMLには含まれません。
659659

660660
```blade
661-
{{-- このコメントはHTMLのなかに存在しない --}}
661+
{{-- このコメントはHTMLの中に存在しない --}}
662662
```
663663

664664
<a name="components"></a>
@@ -701,7 +701,7 @@ php artisan make:component forms.input --view
701701
use Illuminate\Support\Facades\Blade;
702702

703703
/**
704-
* Bootstrap your package's services.
704+
* 自パッケージの初期起動処理
705705
*/
706706
public function boot(): void
707707
{
@@ -721,7 +721,7 @@ public function boot(): void
721721
use Illuminate\Support\Facades\Blade;
722722

723723
/**
724-
* Bootstrap your package's services.
724+
* 自パッケージの初期起動処理
725725
*/
726726
public function boot(): void
727727
{
@@ -761,7 +761,7 @@ Bladeは、コンポーネント名のパスカルケースを使い、コンポ
761761
use Illuminate\Support\Str;
762762

763763
/**
764-
* Whether the component should be rendered
764+
* コンポーネントをレンダするか
765765
*/
766766
public function shouldRender(): bool
767767
{
@@ -819,7 +819,7 @@ class Alert extends Component
819819
) {}
820820

821821
/**
822-
* コンポーネントを表すビュー/コンテンツを取得
822+
* コンポーネントを表すビュー/コンテンツ取得
823823
*/
824824
public function render(): View
825825
{
@@ -843,7 +843,7 @@ class Alert extends Component
843843

844844
```php
845845
/**
846-
* Create the component instance.
846+
* コンポーネントインスタンスの生成
847847
*/
848848
public function __construct(
849849
public string $alertType,
@@ -895,7 +895,7 @@ Bladeにより、以下のHTMLとしてレンダされます。
895895

896896
```php
897897
/**
898-
* Determine if the given option is the currently selected option.
898+
* 指定オプションが現在選択されているか判定
899899
*/
900900
public function isSelected(string $option): bool
901901
{
@@ -920,7 +920,7 @@ Bladeコンポーネントを使用すると、クラスのrenderメソッド内
920920
use Closure;
921921

922922
/**
923-
* Get the view / contents that represent the component.
923+
* コンポーネントを表すビュー/コンテンツ取得
924924
*/
925925
public function render(): Closure
926926
{
@@ -958,7 +958,7 @@ return function (array $data) {
958958
use App\Services\AlertCreator;
959959

960960
/**
961-
* Create the component instance.
961+
* コンポーネントインスタンスの生成
962962
*/
963963
public function __construct(
964964
public AlertCreator $creator,
@@ -982,7 +982,7 @@ use Illuminate\View\Component;
982982
class Alert extends Component
983983
{
984984
/**
985-
* The properties / methods that should not be exposed to the component template.
985+
* コンポーネントテンプレートへ公開すべきでないプロパティ/メソッド
986986
*
987987
* @var array
988988
*/
@@ -1010,7 +1010,7 @@ class Alert extends Component
10101010

10111011
```blade
10121012
<div {{ $attributes }}>
1013-
<!-- Component content -->
1013+
<!-- コンポーネントコメント -->
10141014
</div>
10151015
```
10161016

@@ -1302,7 +1302,7 @@ VueのようなJavaScriptフレームワークを使用している方は「ス
13021302

13031303
```php
13041304
/**
1305-
* Get the view / contents that represent the component.
1305+
* コンポーネントを表すビュー/コンテンツ取得
13061306
*/
13071307
public function render(): string
13081308
{
@@ -1349,7 +1349,7 @@ use Illuminate\Support\Facades\Blade;
13491349
use VendorPackage\View\Components\AlertComponent;
13501350

13511351
/**
1352-
* Bootstrap your package's services.
1352+
* 自パッケージの初期起動処理
13531353
*/
13541354
public function boot(): void
13551355
{
@@ -1371,7 +1371,7 @@ public function boot(): void
13711371
use Illuminate\Support\Facades\Blade;
13721372

13731373
/**
1374-
* Bootstrap your package's services.
1374+
* 自パッケージの初期起動処理
13751375
*/
13761376
public function boot(): void
13771377
{

translation-ja/broadcasting.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ use Illuminate\Queue\SerializesModels;
362362
class OrderShipmentStatusUpdated implements ShouldBroadcast
363363
{
364364
/**
365-
* The order instance.
365+
* 注文インスタンス
366366
*
367367
* @var \App\Models\Order
368368
*/
@@ -377,7 +377,7 @@ use Illuminate\Broadcasting\Channel;
377377
use Illuminate\Broadcasting\PrivateChannel;
378378

379379
/**
380-
* Get the channel the event should broadcast on.
380+
* イベントをブロードキャストするべきチャンネルを取得
381381
*/
382382
public function broadcastOn(): Channel
383383
{
@@ -391,7 +391,7 @@ public function broadcastOn(): Channel
391391
use Illuminate\Broadcasting\PrivateChannel;
392392

393393
/**
394-
* Get the channels the event should broadcast on.
394+
* イベントをブロードキャストするべきチャンネルを複数取得
395395
*
396396
* @return array<int, \Illuminate\Broadcasting\Channel>
397397
*/
@@ -459,7 +459,7 @@ class ServerCreated implements ShouldBroadcast
459459
use SerializesModels;
460460

461461
/**
462-
* Create a new event instance.
462+
* 新しいイベントインスタンスの生成
463463
*/
464464
public function __construct(
465465
public User $user,
@@ -488,7 +488,7 @@ class ServerCreated implements ShouldBroadcast
488488
489489
```php
490490
/**
491-
* The event's broadcast name.
491+
* イベントのブロードキャスト名
492492
*/
493493
public function broadcastAs(): string
494494
{
@@ -523,7 +523,7 @@ public function broadcastAs(): string
523523
524524
```php
525525
/**
526-
* Get the data to broadcast.
526+
* ブロードキャストするデータの取得
527527
*
528528
* @return array<string, mixed>
529529
*/
@@ -540,14 +540,14 @@ public function broadcastWith(): array
540540
541541
```php
542542
/**
543-
* The name of the queue connection to use when broadcasting the event.
543+
* イベントをブロードキャストするときに使用するキュー接続名
544544
*
545545
* @var string
546546
*/
547547
public $connection = 'redis';
548548

549549
/**
550-
* The name of the queue on which to place the broadcasting job.
550+
* ブロードキャストジョブを配置するキュー名
551551
*
552552
* @var string
553553
*/
@@ -558,7 +558,7 @@ public $queue = 'default';
558558
559559
```php
560560
/**
561-
* The name of the queue on which to place the broadcasting job.
561+
* ブロードキャストジョブを配置するキュー名
562562
*/
563563
public function broadcastQueue(): string
564564
{
@@ -586,7 +586,7 @@ class OrderShipmentStatusUpdated implements ShouldBroadcastNow
586586
587587
```php
588588
/**
589-
* Determine if this event should broadcast.
589+
* このイベントをブロードキャストするか決定
590590
*/
591591
public function broadcastWhen(): bool
592592
{
@@ -707,12 +707,12 @@ use App\Models\User;
707707
class OrderChannel
708708
{
709709
/**
710-
* Create a new channel instance.
710+
* 新しいチャンネルインスタンスの生成
711711
*/
712712
public function __construct() {}
713713

714714
/**
715-
* Authenticate the user's access to the channel.
715+
* チャネルへのユーザーアクセスを認可
716716
*/
717717
public function join(User $user, Order $order): array|bool
718718
{
@@ -802,7 +802,7 @@ class OrderShipmentStatusUpdated implements ShouldBroadcast
802802
use InteractsWithBroadcasting;
803803

804804
/**
805-
* Create a new event instance.
805+
* 新しいイベントインスタンスの生成
806806
*/
807807
public function __construct()
808808
{
@@ -992,7 +992,7 @@ Echo.join(`chat.${roomId}`)
992992
993993
```php
994994
/**
995-
* Get the channels the event should broadcast on.
995+
* イベントをブロードキャストするチャンネルを取得
996996
*
997997
* @return array<int, \Illuminate\Broadcasting\Channel>
998998
*/

translation-ja/cache.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Memcachedドライバを使用するには、[Memcached PECLパッケージ](htt
8383
<a name="redis"></a>
8484
#### Redis
8585

86-
Before using a Redis cache with Laravel, you will need to either install the PhpRedis PHP extension via PECL or install the `predis/predis` package (~2.0) via Composer. [Laravel Sail](/docs/{{version}}/sail) already includes this extension. In addition, official Laravel application platforms such as [Laravel Cloud](https://cloud.laravel.com) and [Laravel Forge](https://forge.laravel.com) have the PhpRedis extension installed by default.
86+
LaravelでRedisキャッシュを使用する前に、PECL経由でPhpRedis PHP拡張をインストールするか、Composer経由で`predis/predis`パッケージ(~2.0)をインストールする必要があります。[Laravel Sail](/docs/{{version}}/sail)は、あらかじめこの拡張機能を用意してあります。また、[Laravel Cloud](https://cloud.laravel.com)[Laravel Forge](https://forge.laravel.com)などの公式Laravelアプリケーションプラットフォームでは、デフォルトでPhpRedis拡張をインストールしています。
8787

8888
Redisの設定の詳細については、[Laravelドキュメントページ](/docs/{{version}}/redis#configuration)を参照してください。
8989

@@ -140,7 +140,7 @@ use Illuminate\Support\Facades\Cache;
140140
class UserController extends Controller
141141
{
142142
/**
143-
* Show a list of all users of the application.
143+
* アプリケーションの全ユーザーのリストを表示
144144
*/
145145
public function index(): array
146146
{
@@ -362,15 +362,15 @@ cache()->remember('users', $seconds, function () {
362362
<a name="managing-locks"></a>
363363
### ロック管理
364364

365-
Atomic locks allow for the manipulation of distributed locks without worrying about race conditions. For example, [Laravel Cloud](https://cloud.laravel.com) uses atomic locks to ensure that only one remote task is being executed on a server at a time. You may create and manage locks using the `Cache::lock` method:
365+
アトミックロックを使用すると、競合状態を心配することなく分散ロックを操作できます。例えば、[Laravel Cloud](https://cloud.laravel.com)はアトミックロックを使用して、サーバ上で一度に1つのリモートタスクしか実行しないようにしています。ロックの作成と管理には`Cache::lock`メソッドを使用します。
366366

367367
```php
368368
use Illuminate\Support\Facades\Cache;
369369

370370
$lock = Cache::lock('foo', 10);
371371

372372
if ($lock->get()) {
373-
// Lock acquired for 10 seconds...
373+
// 10秒間ロックを獲得
374374

375375
$lock->release();
376376
}
@@ -380,7 +380,7 @@ if ($lock->get()) {
380380

381381
```php
382382
Cache::lock('foo', 10)->get(function () {
383-
// Lock acquired for 10 seconds and automatically released...
383+
// 10秒間ロックを獲得し、自動的にリリースする
384384
});
385385
```
386386

@@ -394,9 +394,9 @@ $lock = Cache::lock('foo', 10);
394394
try {
395395
$lock->block(5);
396396

397-
// Lock acquired after waiting a maximum of 5 seconds...
397+
// 最大5秒待った後、ロック獲得
398398
} catch (LockTimeoutException $e) {
399-
// Unable to acquire lock...
399+
// ロックを獲得できなかった
400400
} finally {
401401
$lock->release();
402402
}
@@ -406,7 +406,7 @@ try {
406406

407407
```php
408408
Cache::lock('foo', 10)->block(5, function () {
409-
// Lock acquired after waiting a maximum of 5 seconds...
409+
// 最大5秒待った後、ロック獲得
410410
});
411411
```
412412

translation-ja/events.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ class OrderShipped
232232
use Dispatchable, InteractsWithSockets, SerializesModels;
233233

234234
/**
235-
* Create a new event instance.
235+
* 新しいイベントインスタンスの生成
236236
*/
237237
public function __construct(
238238
public Order $order,
@@ -643,7 +643,7 @@ class OrderShipped implements ShouldDispatchAfterCommit
643643
use Dispatchable, InteractsWithSockets, SerializesModels;
644644

645645
/**
646-
* Create a new event instance.
646+
* 新しいイベントインスタンスの生成
647647
*/
648648
public function __construct(
649649
public Order $order,

translation-ja/packages.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ use Illuminate\Support\Facades\Blade;
281281
use VendorPackage\View\Components\AlertComponent;
282282

283283
/**
284-
* Bootstrap your package's services.
284+
* 自パッケージの初期起動処理
285285
*/
286286
public function boot(): void
287287
{
@@ -304,7 +304,7 @@ public function boot(): void
304304
use Illuminate\Support\Facades\Blade;
305305

306306
/**
307-
* Bootstrap your package's services.
307+
* 自パッケージの初期起動処理
308308
*/
309309
public function boot(): void
310310
{

0 commit comments

Comments
 (0)