Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.

Commit 233703d

Browse files
committed
Update po files
1 parent f03fbfc commit 233703d

File tree

5 files changed

+351
-157
lines changed

5 files changed

+351
-157
lines changed

docs/locale/ja/LC_MESSAGES/config.po

Lines changed: 30 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ msgid ""
22
msgstr ""
33
"Project-Id-Version: doma-docs\n"
44
"Report-Msgid-Bugs-To: \n"
5-
"POT-Creation-Date: 2024-03-29 20:39+0900\n"
5+
"POT-Creation-Date: 2024-07-19 19:09+0900\n"
66
"Last-Translator: \n"
77
"Language-Team: Japanese\n"
88
"MIME-Version: 1.0\n"
@@ -409,74 +409,86 @@ msgid "The default EntityListenerProvider get the entity listener from the accep
409409
msgstr "デフォルトの ``EntityListenerProvider`` は、受け入れられた ``Supplier`` からエンティティリスナーを取得します。"
410410

411411
#: ../../config.rst:227
412+
msgid "SQL Builder Settings"
413+
msgstr "SQL ビルダーの設定"
414+
415+
#: ../../config.rst:229
416+
msgid "Return a ``SqlBuilderSettings`` from the ``getSqlBuilderSettings`` method."
417+
msgstr "``getSqlBuilderSettings`` メソッドから ``SqlBuilderSettings`` を返します。"
418+
419+
#: ../../config.rst:231
420+
msgid "``SqlBuilderSettings`` controls the building of SQL. Specifically, it can remove comments and blank lines from the SQL."
421+
msgstr "``SqlBuilderSettings`` は SQL の構築を制御します。具体的にはコメントや空白行を SQL から削除できます。"
422+
423+
#: ../../config.rst:235
412424
msgid "Loading JDBC drivers"
413425
msgstr "JDBCドライバのロード"
414426

415-
#: ../../config.rst:232
427+
#: ../../config.rst:240
416428
msgid "All JDBC drivers are loaded automatically by the `service provider <service provider_>`_ mechanism."
417429
msgstr "すべての JDBC ドライバは、 `サービスプロバイダ <service provider_>`_ メカニズムによって自動的にロードされます。"
418430

419-
#: ../../config.rst:236
431+
#: ../../config.rst:244
420432
msgid "But in the specific environment, the mechanism doesn't work appropriately. For example, when you use Apache Tomcat, you will find the case. See also: `DriverManager, the service provider mechanism and memory leaks <tomcat driver_>`_"
421433
msgstr "ただし、特定の環境では、このメカニズムが適切に動作しません。たとえば、Apache Tomcat を使用すると、このケースが見つかります。参照: `DriverManager、サービス プロバイダのメカニズムとメモリリーク <tomcat driver_>`_"
422434

423-
#: ../../config.rst:243
435+
#: ../../config.rst:251
424436
msgid "Configuration definition"
425437
msgstr "設定クラスの定義"
426438

427-
#: ../../config.rst:246
439+
#: ../../config.rst:254
428440
msgid "Simple definition"
429441
msgstr "単純な定義"
430442

431-
#: ../../config.rst:248
443+
#: ../../config.rst:256
432444
msgid "The simple definition is appropriate in following cases:"
433445
msgstr "単純な定義は、次の場合に適しています。"
434446

435-
#: ../../config.rst:250
447+
#: ../../config.rst:258
436448
msgid "The configuration instance isn't managed in the dependency injection container"
437449
msgstr "設定インスタンスが依存関係注入コンテナで管理されない"
438450

439-
#: ../../config.rst:251
451+
#: ../../config.rst:259
440452
msgid "Local transactions is used"
441453
msgstr "ローカルトランザクションが使用される"
442454

443-
#: ../../config.rst:293
455+
#: ../../config.rst:301
444456
msgid "You can use the above ``DbConfig`` class as follows:"
445457
msgstr "上記の ``DbConfig`` クラスは次のように使用できます。"
446458

447-
#: ../../config.rst:299
459+
#: ../../config.rst:307
448460
msgid "The above ``EmployeeDao`` interface must be annotated with the ``@Dao`` annotation as follows:"
449461
msgstr "上記の ``EmployeeDao`` インタフェースには、次のように ``@Dao`` アノテーションを付ける必要があります。"
450462

451-
#: ../../config.rst:311
463+
#: ../../config.rst:319
452464
msgid "Advanced definition"
453465
msgstr "高度な定義"
454466

455-
#: ../../config.rst:313
467+
#: ../../config.rst:321
456468
msgid "The advanced definition is appropriate in following cases:"
457469
msgstr "高度な定義は、次の場合に適しています。"
458470

459-
#: ../../config.rst:315
471+
#: ../../config.rst:323
460472
msgid "The configuration instance is managed as a singleton object in the dependency injection container"
461473
msgstr "設定インスタンスが依存性注入コンテナ内のシングルトンオブジェクトとして管理される"
462474

463-
#: ../../config.rst:316
475+
#: ../../config.rst:324
464476
msgid "The transaction manager is provided from the application server or framework you use"
465477
msgstr "トランザクションマネージャが使用するアプリケーションサーバーまたはフレームワークから提供される"
466478

467-
#: ../../config.rst:318
479+
#: ../../config.rst:326
468480
msgid "Suppose the ``dialect`` and the ``dataSource`` are injected by the dependency injection container:"
469481
msgstr "``dialect`` と ``dataSource`` が依存性注入コンテナによって注入されると仮定します。"
470482

471-
#: ../../config.rst:347
483+
#: ../../config.rst:355
472484
msgid "To inject the instance of the above class to your DAO implementation instance, you have to annotate your DAO interfaces with ``@AnnotateWith``:"
473485
msgstr "上記のクラスのインスタンスを DAO のインスタンスに注入するには、DAO インタフェースに ``@AnnotateWith`` アノテーションを付ける必要があります。"
474486

475-
#: ../../config.rst:374
487+
#: ../../config.rst:382
476488
msgid "To avoid annotating your DAO interfaces with ``@AnnotateWith`` repeatedly, annotate the arbitrary annotation with it only once:"
477489
msgstr "DAO インタフェースに ``@AnnotateWith`` で繰り返しアノテーションを付けることを避けるには、任意のアノテーションに 1 回だけアノテーションを付けます。"
478490

479-
#: ../../config.rst:385
491+
#: ../../config.rst:393
480492
msgid "Then, you can annotate your DAO interfaces with the above ``@InjectConfig`` annotation:"
481493
msgstr "次に、DAO インタフェースに上記の ``@InjectConfig`` アノテーションを付けることができます。"
482494

0 commit comments

Comments
 (0)